This commit is contained in:
Cyprien111
2025-03-24 10:16:35 +01:00
2 changed files with 20 additions and 0 deletions

12
src/Cardinal.java Normal file
View File

@@ -0,0 +1,12 @@
public enum Cardinal {
N,
NE,
E,
SE,
S,
SW,
W,
NW;
}

8
src/Color.java Normal file
View File

@@ -0,0 +1,8 @@
public enum Color {
NIL,
WHITE,
BLACK;
}