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:58:20 +01:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|