Browse Source

EscapeBot using walkBySpiral. Avg moves 54. Added drafts for SnakeBot and RumbleBot

testing_N
Illia Soloviov 4 months ago
parent
commit
f7ae380baa
2 changed files with 24 additions and 0 deletions
  1. 12
    0
      src/RumbleBot.java
  2. 12
    0
      src/SnakeBot.java

+ 12
- 0
src/RumbleBot.java View File

@@ -0,0 +1,12 @@
public class RumbleBot extends Bot{
public static void main(String[] args) {
Bot escapeBot = new EscapeBot(args);
escapeBot.run();
}
protected RumbleBot(String[] args) {
super(args);
}
protected char nextMove(View view){
return 0;
}
}

+ 12
- 0
src/SnakeBot.java View File

@@ -0,0 +1,12 @@
public class SnakeBot extends Bot{
public static void main(String[] args) {
Bot escapeBot = new EscapeBot(args);
escapeBot.run();
}
protected SnakeBot(String[] args) {
super(args);
}
protected char nextMove(View view){
return 0;
}
}

Loading…
Cancel
Save