diff options
Diffstat (limited to 'src/ch/epfl/maze/physical/zoo/SpaceInvader.java')
-rw-r--r-- | src/ch/epfl/maze/physical/zoo/SpaceInvader.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ch/epfl/maze/physical/zoo/SpaceInvader.java b/src/ch/epfl/maze/physical/zoo/SpaceInvader.java index f5963b1..d03d280 100644 --- a/src/ch/epfl/maze/physical/zoo/SpaceInvader.java +++ b/src/ch/epfl/maze/physical/zoo/SpaceInvader.java | |||
@@ -18,7 +18,6 @@ import ch.epfl.maze.util.Vector2D; | |||
18 | * | 18 | * |
19 | * @see ch.epfl.maze.tests.Competition Competition | 19 | * @see ch.epfl.maze.tests.Competition Competition |
20 | */ | 20 | */ |
21 | |||
22 | public class SpaceInvader extends Animal { | 21 | public class SpaceInvader extends Animal { |
23 | 22 | ||
24 | /** | 23 | /** |
@@ -26,7 +25,6 @@ public class SpaceInvader extends Animal { | |||
26 | * | 25 | * |
27 | * @param position Starting position of the mouse in the labyrinth | 26 | * @param position Starting position of the mouse in the labyrinth |
28 | */ | 27 | */ |
29 | |||
30 | public SpaceInvader(Vector2D position) { | 28 | public SpaceInvader(Vector2D position) { |
31 | super(position); | 29 | super(position); |
32 | // TODO (bonus) | 30 | // TODO (bonus) |
@@ -35,7 +33,6 @@ public class SpaceInvader extends Animal { | |||
35 | /** | 33 | /** |
36 | * Moves according to (... please complete with as many details as you can). | 34 | * Moves according to (... please complete with as many details as you can). |
37 | */ | 35 | */ |
38 | |||
39 | @Override | 36 | @Override |
40 | public Direction move(Direction[] choices) { | 37 | public Direction move(Direction[] choices) { |
41 | // TODO (bonus) | 38 | // TODO (bonus) |
@@ -47,4 +44,5 @@ public class SpaceInvader extends Animal { | |||
47 | // TODO (bonus) | 44 | // TODO (bonus) |
48 | return null; | 45 | return null; |
49 | } | 46 | } |
47 | |||
50 | } | 48 | } |