Added Scatter-strategy

This commit is contained in:
Urban Modig
2025-08-19 21:17:36 +02:00
parent 64dcba2584
commit 9f316e5b43
13 changed files with 183 additions and 80 deletions

View File

@ -32,7 +32,7 @@ public class PlayingState implements GameState {
@Override
public void update() {
pacman.update();
ghostManager.update(pacman);
ghostManager.update(pacman, map);
}
@Override