Player class

This commit is contained in:
Cyprien111
2025-03-24 09:42:07 +01:00
parent 36486782bf
commit f43046bc6a

View File

@@ -1,4 +1,11 @@
abstract class Player{
private String name;
public String getName() {
return name;
}
public abstract Coordinate chooseMove();
}