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/Mouse.java | 54 +++++++++++++++-----------------
1 file changed, 26 insertions(+), 28 deletions(-)
(limited to 'src/ch/epfl/maze/physical/zoo/Mouse.java')
diff --git a/src/ch/epfl/maze/physical/zoo/Mouse.java b/src/ch/epfl/maze/physical/zoo/Mouse.java
index 17d8b5c..e5cb9ae 100644
--- a/src/ch/epfl/maze/physical/zoo/Mouse.java
+++ b/src/ch/epfl/maze/physical/zoo/Mouse.java
@@ -6,36 +6,34 @@ import ch.epfl.maze.util.Vector2D;
/**
* Mouse A.I. that remembers only the previous choice it has made.
- *
*/
public class Mouse extends Animal {
- /**
- * Constructs a mouse with a starting position.
- *
- * @param position
- * Starting position of the mouse in the labyrinth
- */
-
- public Mouse(Vector2D position) {
- super(position);
- }
-
- /**
- * Moves according to an improved version of a random walk : the
- * mouse does not directly retrace its steps.
- */
-
- @Override
- public Direction move(Direction[] choices) {
- // TODO
- return Direction.NONE;
- }
-
- @Override
- public Animal copy() {
- // TODO
- return null;
- }
+ /**
+ * Constructs a mouse with a starting position.
+ *
+ * @param position Starting position of the mouse in the labyrinth
+ */
+
+ public Mouse(Vector2D position) {
+ super(position);
+ }
+
+ /**
+ * Moves according to an improved version of a random walk : the
+ * mouse does not directly retrace its steps.
+ */
+
+ @Override
+ public Direction move(Direction[] choices) {
+ // TODO
+ return Direction.NONE;
+ }
+
+ @Override
+ public Animal copy() {
+ // TODO
+ return null;
+ }
}
--
cgit v1.2.3