initial commit

This commit is contained in:
Illia Soloviov 2023-12-14 15:56:20 +01:00
parent 617230bbb6
commit 0084738fc0

View File

@ -1,14 +1,19 @@
public class ManualBot extends Bot{ public class ManualBot extends Bot{
public static void main(String[] args) { public static void main(String[] args) {
ManualBot manualBot = new ManualBot(args); Bot manualBot = new ManualBot(args);
manualBot.run();
} }
protected ManualBot(String[] args) { protected ManualBot(String[] args) {
super(args); super(args);
} }
public void run(){
}
protected char nextMove(View view) throws Exception{ protected char nextMove(View view) throws Exception{
char c = 'cnew'; char c = 'c';
return c; return c;
} }
} }