@ -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;