summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/pacman/Inky.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/Inky.java')
-rw-r--r--src/ch/epfl/maze/physical/pacman/Inky.java40
1 files changed, 19 insertions, 21 deletions
diff --git a/src/ch/epfl/maze/physical/pacman/Inky.java b/src/ch/epfl/maze/physical/pacman/Inky.java
index 87d9626..883c385 100644
--- a/src/ch/epfl/maze/physical/pacman/Inky.java
+++ b/src/ch/epfl/maze/physical/pacman/Inky.java
@@ -9,32 +9,30 @@ import ch.epfl.maze.util.Vector2D;
9/** 9/**
10 * Blue ghost from the Pac-Man game, targets the result of two times the vector 10 * Blue ghost from the Pac-Man game, targets the result of two times the vector
11 * from Blinky to its target. 11 * from Blinky to its target.
12 *
13 */ 12 */
14 13
15public class Inky extends Predator { 14public class Inky extends Predator {
16 15
17 /** 16 /**
18 * Constructs a Inky with a starting position. 17 * Constructs a Inky with a starting position.
19 * 18 *
20 * @param position 19 * @param position Starting position of Inky in the labyrinth
21 * Starting position of Inky in the labyrinth 20 */
22 */
23 21
24 public Inky(Vector2D position) { 22 public Inky(Vector2D position) {
25 super(position); 23 super(position);
26 // TODO 24 // TODO
27 } 25 }
28 26
29 @Override 27 @Override
30 public Direction move(Direction[] choices, Daedalus daedalus) { 28 public Direction move(Direction[] choices, Daedalus daedalus) {
31 // TODO 29 // TODO
32 return Direction.NONE; 30 return Direction.NONE;
33 } 31 }
34 32
35 @Override 33 @Override
36 public Animal copy() { 34 public Animal copy() {
37 // TODO 35 // TODO
38 return null; 36 return null;
39 } 37 }
40} 38}