You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ManualBot.java 316B

1234567891011121314
  1. public class ManualBot extends Bot{
  2. public static void main(String[] args) {
  3. ManualBot manualBot = new ManualBot(args);
  4. }
  5. protected ManualBot(String[] args) {
  6. super(args);
  7. }
  8. protected char nextMove(View view) throws Exception{
  9. char c = 'cnew';
  10. return c;
  11. }
  12. }