Browse Source

Added GhostBehaviorChase

remotes/origin/menu
fdai7012 12 months ago
committed by Julian Wenzel
parent
commit
7c417fe69f
  1. 16
      src/main/java/pacmanGame/GhostBehaviorChase.java

16
src/main/java/pacmanGame/GhostBehaviorChase.java

@ -0,0 +1,16 @@
package pacmanGame;
public class GhostBehaviorChase implements GhostBehavior {
public final Ghost ghost;
public GhostBehaviorChase(Ghost ghost) {
this.ghost = ghost;
}
@Override
public Vector2 GetDirection() {
return null;
}
}
Loading…
Cancel
Save