Browse Source

Added Vector2

remotes/origin/menu
fdai7012 12 months ago
committed by Julian
parent
commit
8471bb03a9
  1. 11
      src/main/java/pacmanGame/Vector2.java

11
src/main/java/pacmanGame/Vector2.java

@ -0,0 +1,11 @@
package pacmanGame;
public class Vector2 {
public int x;
public int y;
public Vector2(int x, int y) {
this.x = x;
this.y = y;
}
}
Loading…
Cancel
Save