BotsAI/src/ManualBot.java

15 lines
316 B
Java
Raw Normal View History

2023-12-14 14:57:56 +01:00
public class ManualBot extends Bot{
public static void main(String[] args) {
ManualBot manualBot = new ManualBot(args);
}
protected ManualBot(String[] args) {
super(args);
}
protected char nextMove(View view) throws Exception{
2023-12-14 15:15:33 +01:00
char c = 'cnew';
2023-12-14 14:57:56 +01:00
return c;
}
}