summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/pacman/Blinky.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/Blinky.java')
-rw-r--r--src/ch/epfl/maze/physical/pacman/Blinky.java40
1 files changed, 19 insertions, 21 deletions
diff --git a/src/ch/epfl/maze/physical/pacman/Blinky.java b/src/ch/epfl/maze/physical/pacman/Blinky.java
index 22ef16f..d70f444 100644
--- a/src/ch/epfl/maze/physical/pacman/Blinky.java
+++ b/src/ch/epfl/maze/physical/pacman/Blinky.java
@@ -8,32 +8,30 @@ import ch.epfl.maze.util.Vector2D;
8 8
9/** 9/**
10 * Red ghost from the Pac-Man game, chases directly its target. 10 * Red ghost from the Pac-Man game, chases directly its target.
11 *
12 */ 11 */
13 12
14public class Blinky extends Predator { 13public class Blinky extends Predator {
15 14
16 /** 15 /**
17 * Constructs a Blinky with a starting position. 16 * Constructs a Blinky with a starting position.
18 * 17 *
19 * @param position 18 * @param position Starting position of Blinky in the labyrinth
20 * Starting position of Blinky in the labyrinth 19 */
21 */
22 20
23 public Blinky(Vector2D position) { 21 public Blinky(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}