Browse Source

fixed Cell attributes

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

4
src/main/java/pacmanGame/Cell.java

@ -1,8 +1,8 @@
package pacmanGame; package pacmanGame;
public class Cell { public class Cell {
Vector2 pos;
String type;
public Vector2 pos;
public String type;
public Cell(Vector2 pos, String type) { public Cell(Vector2 pos, String type) {
this.pos = pos; this.pos = pos;

Loading…
Cancel
Save