diff --git a/src/main/java/pacmanGame/Ghost.java b/src/main/java/pacmanGame/Ghost.java index 82f0578..dc8a7d9 100644 --- a/src/main/java/pacmanGame/Ghost.java +++ b/src/main/java/pacmanGame/Ghost.java @@ -6,6 +6,7 @@ public class Ghost { public Ghost(GameManager gameManager) { this.gameManager = gameManager; + this.position = new Vector2(-1, -1); } }