From 4159a1fbf88f1ef43727f96c3939f76597169d61 Mon Sep 17 00:00:00 2001 From: cyril-colin Date: Mon, 14 Oct 2019 08:45:41 +0200 Subject: [PATCH] moved Direction to the commandSystem --- src/commandSystem/Direction.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commandSystem/Direction.java b/src/commandSystem/Direction.java index 45cb363..be66281 100644 --- a/src/commandSystem/Direction.java +++ b/src/commandSystem/Direction.java @@ -1,5 +1,7 @@ package commandSystem; public enum Direction { - UP, DOWN, NONE + NONE, + UP, + DOWN, }