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, 40 insertions, 0 deletions
diff --git a/src/ch/epfl/maze/physical/pacman/Inky.java b/src/ch/epfl/maze/physical/pacman/Inky.java
new file mode 100644
index 0000000..87d9626
--- /dev/null
+++ b/src/ch/epfl/maze/physical/pacman/Inky.java
@@ -0,0 +1,40 @@
1package ch.epfl.maze.physical.pacman;
2
3import ch.epfl.maze.physical.Animal;
4import ch.epfl.maze.physical.Daedalus;
5import ch.epfl.maze.physical.Predator;
6import ch.epfl.maze.util.Direction;
7import ch.epfl.maze.util.Vector2D;
8
9/**
10 * Blue ghost from the Pac-Man game, targets the result of two times the vector
11 * from Blinky to its target.
12 *
13 */
14
15public class Inky extends Predator {
16
17 /**
18 * Constructs a Inky with a starting position.
19 *
20 * @param position
21 * Starting position of Inky in the labyrinth
22 */
23
24 public Inky(Vector2D position) {
25 super(position);
26 // TODO
27 }
28
29 @Override
30 public Direction move(Direction[] choices, Daedalus daedalus) {
31 // TODO
32 return Direction.NONE;
33 }
34
35 @Override
36 public Animal copy() {
37 // TODO
38 return null;
39 }
40}