diff options
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/Pinky.java')
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/Pinky.java | 40 |
1 files changed, 19 insertions, 21 deletions
diff --git a/src/ch/epfl/maze/physical/pacman/Pinky.java b/src/ch/epfl/maze/physical/pacman/Pinky.java index 9a64a53..aaa2720 100644 --- a/src/ch/epfl/maze/physical/pacman/Pinky.java +++ b/src/ch/epfl/maze/physical/pacman/Pinky.java | |||
@@ -8,32 +8,30 @@ import ch.epfl.maze.util.Vector2D; | |||
8 | 8 | ||
9 | /** | 9 | /** |
10 | * Pink ghost from the Pac-Man game, targets 4 squares in front of its target. | 10 | * Pink ghost from the Pac-Man game, targets 4 squares in front of its target. |
11 | * | ||
12 | */ | 11 | */ |
13 | 12 | ||
14 | public class Pinky extends Predator { | 13 | public class Pinky extends Predator { |
15 | 14 | ||
16 | /** | 15 | /** |
17 | * Constructs a Pinky with a starting position. | 16 | * Constructs a Pinky with a starting position. |
18 | * | 17 | * |
19 | * @param position | 18 | * @param position Starting position of Pinky in the labyrinth |
20 | * Starting position of Pinky in the labyrinth | 19 | */ |
21 | */ | ||
22 | 20 | ||
23 | public Pinky(Vector2D position) { | 21 | public Pinky(Vector2D position) { |
24 | super(position); | 22 | super(position); |
25 | // TODO | 23 | // TODO |
26 | } | 24 | } |
27 | 25 | ||
28 | @Override | 26 | @Override |
29 | public Direction move(Direction[] choices, Daedalus daedalus) { | 27 | public Direction move(Direction[] choices, Daedalus daedalus) { |
30 | // TODO | 28 | // TODO |
31 | return Direction.NONE; | 29 | return Direction.NONE; |
32 | } | 30 | } |
33 | 31 | ||
34 | @Override | 32 | @Override |
35 | public Animal copy() { | 33 | public Animal copy() { |
36 | // TODO | 34 | // TODO |
37 | return null; | 35 | return null; |
38 | } | 36 | } |
39 | } | 37 | } |