Ghost movement working - first rev

This commit is contained in:
Urban Modig
2025-08-17 15:03:54 +02:00
parent 1bbba216d2
commit 05285529c5
10 changed files with 95 additions and 63 deletions

View File

@ -109,4 +109,8 @@ public class PacMan {
public void setDirection(Direction direction) {
this.direction = direction;
}
public Point getTilePosition() {
return position;
}
}