From 90bd766f361083f6fd9e39ff080c83fcc606832f Mon Sep 17 00:00:00 2001 From: Pacien TRAN-GIRARD Date: Sat, 21 Nov 2015 10:44:42 +0100 Subject: Reformat imported code --- src/ch/epfl/maze/physical/zoo/Monkey.java | 54 +++++++++++++++---------------- 1 file changed, 26 insertions(+), 28 deletions(-) (limited to 'src/ch/epfl/maze/physical/zoo/Monkey.java') diff --git a/src/ch/epfl/maze/physical/zoo/Monkey.java b/src/ch/epfl/maze/physical/zoo/Monkey.java index a9295b8..f0f9b2e 100644 --- a/src/ch/epfl/maze/physical/zoo/Monkey.java +++ b/src/ch/epfl/maze/physical/zoo/Monkey.java @@ -6,36 +6,34 @@ import ch.epfl.maze.util.Vector2D; /** * Monkey A.I. that puts its hand on the left wall and follows it. - * */ public class Monkey extends Animal { - /** - * Constructs a monkey with a starting position. - * - * @param position - * Starting position of the monkey in the labyrinth - */ - - public Monkey(Vector2D position) { - super(position); - // TODO - } - - /** - * Moves according to the relative left wall that the monkey has to follow. - */ - - @Override - public Direction move(Direction[] choices) { - // TODO - return Direction.NONE; - } - - @Override - public Animal copy() { - // TODO - return null; - } + /** + * Constructs a monkey with a starting position. + * + * @param position Starting position of the monkey in the labyrinth + */ + + public Monkey(Vector2D position) { + super(position); + // TODO + } + + /** + * Moves according to the relative left wall that the monkey has to follow. + */ + + @Override + public Direction move(Direction[] choices) { + // TODO + return Direction.NONE; + } + + @Override + public Animal copy() { + // TODO + return null; + } } -- cgit v1.2.3