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