diff options
author | Pacien TRAN-GIRARD | 2015-11-21 10:44:42 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-11-21 10:44:42 +0100 |
commit | 90bd766f361083f6fd9e39ff080c83fcc606832f (patch) | |
tree | df81a931c9565a4b227068680087f58fdace1859 /src/ch/epfl/maze/physical/pacman/Inky.java | |
parent | 655ac88f4e73b2df532a451aedf5a561ea1b0d2c (diff) | |
download | maze-solver-90bd766f361083f6fd9e39ff080c83fcc606832f.tar.gz |
Reformat imported code
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/Inky.java')
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/Inky.java | 40 |
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 | ||
15 | public class Inky extends Predator { | 14 | public 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 | } |