Browse Source

Added Cell

remotes/origin/menu
fdai7012 11 months ago
committed by Julian
parent
commit
dacd949261
  1. 11
      src/main/java/pacmanGame/Cell.java

11
src/main/java/pacmanGame/Cell.java

@ -0,0 +1,11 @@
package pacmanGame;
public class Cell {
Vector2 pos;
String type;
public Cell(Vector2 pos, String type) {
this.pos = pos;
this.type = type;
}
}
Loading…
Cancel
Save