moved Direction to the commandSystem

This commit is contained in:
cyril-colin 2019-10-14 08:45:41 +02:00
parent 78e40e13bd
commit 4159a1fbf8

View File

@ -1,5 +1,7 @@
package commandSystem;
public enum Direction {
UP, DOWN, NONE
NONE,
UP,
DOWN,
}