Browse Source

initial commit

testing_N
Illia Soloviov 5 months ago
parent
commit
0084738fc0
1 changed files with 7 additions and 2 deletions
  1. 7
    2
      src/ManualBot.java

+ 7
- 2
src/ManualBot.java View File



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;
} }
} }

Loading…
Cancel
Save