BotsAI/src/ManualBot.java

20 lines
363 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) {
2023-12-14 15:56:20 +01:00
Bot manualBot = new ManualBot(args);
manualBot.run();
2023-12-14 14:57:56 +01:00
}
protected ManualBot(String[] args) {
super(args);
}
2023-12-14 15:59:24 +01:00
public void run(){
}
2023-12-14 15:56:20 +01:00
2023-12-14 14:57:56 +01:00
protected char nextMove(View view) throws Exception{
2023-12-14 15:56:20 +01:00
char c = 'c';
2023-12-14 14:57:56 +01:00
return c;
}
}