diff --git a/src/main/java/pacmanGame/Cell.java b/src/main/java/pacmanGame/Cell.java new file mode 100644 index 0000000..6a76b2a --- /dev/null +++ b/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; + } +}