summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/Animal.java
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2015-11-26 09:31:01 +0100
committerPacien TRAN-GIRARD2015-11-26 09:40:17 +0100
commite326c2759d6529048d19c2c913b2b1c264f74485 (patch)
treeca23531b04b5bbd3a272d7e69a26cf0baedd5957 /src/ch/epfl/maze/physical/Animal.java
parent43c5d1cb303955c1ac2fa5ac86449e87916a0257 (diff)
downloadmaze-solver-e326c2759d6529048d19c2c913b2b1c264f74485.tar.gz
Replace choice array by choice set
Diffstat (limited to 'src/ch/epfl/maze/physical/Animal.java')
-rw-r--r--src/ch/epfl/maze/physical/Animal.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ch/epfl/maze/physical/Animal.java b/src/ch/epfl/maze/physical/Animal.java
index e15cb74..9d89e8b 100644
--- a/src/ch/epfl/maze/physical/Animal.java
+++ b/src/ch/epfl/maze/physical/Animal.java
@@ -44,8 +44,8 @@ abstract public class Animal {
44 * the ones available from its position. 44 * the ones available from its position.
45 * 45 *
46 * @param choices The choices left to the animal at its current position (see 46 * @param choices The choices left to the animal at its current position (see
47 * {@link ch.epfl.maze.physical.World#getChoices(Vector2D) 47 * {@link ch.epfl.maze.physical.World#getChoiceSet(Vector2D)
48 * World.getChoices(Vector2D)}) 48 * World.getChoiceSet(Vector2D)})
49 * @return The next direction of the animal, chosen in {@code choices} 49 * @return The next direction of the animal, chosen in {@code choices}
50 * @implNote Not abstract for compatibility purpose (in order not to break tests) 50 * @implNote Not abstract for compatibility purpose (in order not to break tests)
51 */ 51 */