summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/Direction.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/fourisland/fourpuzzle/Direction.java')
-rw-r--r--src/com/fourisland/fourpuzzle/Direction.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/fourisland/fourpuzzle/Direction.java b/src/com/fourisland/fourpuzzle/Direction.java index 948b024..4742521 100644 --- a/src/com/fourisland/fourpuzzle/Direction.java +++ b/src/com/fourisland/fourpuzzle/Direction.java
@@ -16,6 +16,11 @@ public enum Direction {
16 West; 16 West;
17 17
18 /** 18 /**
19 * TODO Find a way to serve the inverse of a Direction without using a
20 * switch, which is apparently bad practice
21 */
22
23 /**
19 * Returns the direction opposite from the current one 24 * Returns the direction opposite from the current one
20 * @return A Direction representing the opposite direction 25 * @return A Direction representing the opposite direction
21 */ 26 */