-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new vector class to handle coordinates easier
- Loading branch information
1 parent
91de5dc
commit a6effb3
Showing
4 changed files
with
65 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package launcher; | ||
|
||
public class Vector | ||
{ | ||
public int x, y; | ||
Vector() | ||
{ | ||
x = 0; | ||
y = 0; | ||
} | ||
|
||
Vector(int x2, int y2) | ||
{ | ||
x = x2; | ||
y = y2; | ||
} | ||
|
||
Vector(int v) | ||
{ | ||
x = v; | ||
y = v; | ||
} | ||
|
||
public void set(int x2, int y2) | ||
{ | ||
x = x2; | ||
y = y2; | ||
} | ||
} |