getAll start

This commit is contained in:
Aubin DORIVAL
2025-03-31 08:46:04 +02:00
parent b32e9146b7
commit b81ff254ba
2 changed files with 22 additions and 6 deletions

View File

@@ -110,10 +110,12 @@ public class GomokuCell{
switch (this.getSate()) {
case Color.NIL:
return " ";
case Color.BLACK:
return "X";
case Color.WHITE:
return "0";
default:
break;
return "BUG";
}
return this.state.toString();
}
}