9 lines
99 B
Java

package MovementStrategy;
public enum MovementDirection {
Up,
Down,
Left,
Right
}