diff --git a/src/main/java/pacmanGame/GhostBehaviorRandom.java b/src/main/java/pacmanGame/GhostBehaviorRandom.java new file mode 100644 index 0000000..492892c --- /dev/null +++ b/src/main/java/pacmanGame/GhostBehaviorRandom.java @@ -0,0 +1,11 @@ +package pacmanGame; +import java.util.Random; +public class GhostBehaviorRandom implements GhostBehavior { + + @Override + public Vector2 GetDirection(Ghost ghost) { + + return null; + } + +}