summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/pacman/Clyde.java
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2015-11-21 10:44:42 +0100
committerPacien TRAN-GIRARD2015-11-21 10:44:42 +0100
commit90bd766f361083f6fd9e39ff080c83fcc606832f (patch)
treedf81a931c9565a4b227068680087f58fdace1859 /src/ch/epfl/maze/physical/pacman/Clyde.java
parent655ac88f4e73b2df532a451aedf5a561ea1b0d2c (diff)
downloadmaze-solver-90bd766f361083f6fd9e39ff080c83fcc606832f.tar.gz
Reformat imported code
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/Clyde.java')
-rw-r--r--src/ch/epfl/maze/physical/pacman/Clyde.java40
1 files changed, 19 insertions, 21 deletions
diff --git a/src/ch/epfl/maze/physical/pacman/Clyde.java b/src/ch/epfl/maze/physical/pacman/Clyde.java
index 4da35d8..8b3fd20 100644
--- a/src/ch/epfl/maze/physical/pacman/Clyde.java
+++ b/src/ch/epfl/maze/physical/pacman/Clyde.java
@@ -9,32 +9,30 @@ import ch.epfl.maze.util.Vector2D;
9/** 9/**
10 * Orange ghost from the Pac-Man game, alternates between direct chase if far 10 * Orange ghost from the Pac-Man game, alternates between direct chase if far
11 * from its target and SCATTER if close. 11 * from its target and SCATTER if close.
12 *
13 */ 12 */
14 13
15public class Clyde extends Predator { 14public class Clyde extends Predator {
16 15
17 /** 16 /**
18 * Constructs a Clyde with a starting position. 17 * Constructs a Clyde with a starting position.
19 * 18 *
20 * @param position 19 * @param position Starting position of Clyde in the labyrinth
21 * Starting position of Clyde in the labyrinth 20 */
22 */
23 21
24 public Clyde(Vector2D position) { 22 public Clyde(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}