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