diff options
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/PacMan.java')
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/PacMan.java | 32 |
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 @@ | |||
1 | package ch.epfl.maze.physical.pacman; | ||
2 | |||
3 | import ch.epfl.maze.physical.Animal; | ||
4 | import ch.epfl.maze.physical.Daedalus; | ||
5 | import ch.epfl.maze.physical.Prey; | ||
6 | import ch.epfl.maze.util.Direction; | ||
7 | import ch.epfl.maze.util.Vector2D; | ||
8 | |||
9 | /** | ||
10 | * Pac-Man character, from the famous game of the same name. | ||
11 | * | ||
12 | */ | ||
13 | |||
14 | public 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 | } | ||