13 lines
289 B
Java
13 lines
289 B
Java
![]() |
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;
|
||
|
}
|
||
|
}
|