summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/pacman/PacMan.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/PacMan.java')
-rw-r--r--src/ch/epfl/maze/physical/pacman/PacMan.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ch/epfl/maze/physical/pacman/PacMan.java b/src/ch/epfl/maze/physical/pacman/PacMan.java
new file mode 100644
index 0000000..0bdd156
--- /dev/null
+++ b/src/ch/epfl/maze/physical/pacman/PacMan.java
@@ -0,0 +1,32 @@
1package ch.epfl.maze.physical.pacman;
2
3import ch.epfl.maze.physical.Animal;
4import ch.epfl.maze.physical.Daedalus;
5import ch.epfl.maze.physical.Prey;
6import ch.epfl.maze.util.Direction;
7import ch.epfl.maze.util.Vector2D;
8
9/**
10 * Pac-Man character, from the famous game of the same name.
11 *
12 */
13
14public class PacMan extends Prey {
15
16 public PacMan(Vector2D position) {
17 super(position);
18 // TODO
19 }
20
21 @Override
22 public Direction move(Direction[] choices, Daedalus daedalus) {
23 // TODO
24 return Direction.NONE;
25 }
26
27 @Override
28 public Animal copy() {
29 // TODO
30 return null;
31 }
32}