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