Signed-off-by: Anthony Debucquoy <debucquoy.anthony@gmail.com>
This commit is contained in:
2023-03-21 09:56:13 +01:00
parent 71beb69c84
commit 4854fef677
3 changed files with 37 additions and 6 deletions

View File

@ -0,0 +1,19 @@
package school_project;
/**
* This is used to represent a position/vector/... any ensemble of 2 elements that have to work together in
* a plan. This way we can use some basic operations over them.
*/
public class Vec2 {
public int x, y;
public Vec2() {
x = -1;
y = -1;
}
public Vec2(int x, int y ){
this.x = x;
this.y = y;
}
}