Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
180 B
1
Indexable
Never
package byow.architect;

public class Space {
    public enum Direction {
        EAST, SOUTH, WEST, NORTH
    }
    public enum Orientation {
        HORIZONTAL, VERTICAL
    }

}