Browse Source

Dateien hochladen nach „“

master
Aylin Goekce 5 months ago
parent
commit
3f64df6fc4
1 changed files with 19 additions and 0 deletions
  1. 19
    0
      EscapeBot.java

+ 19
- 0
EscapeBot.java View File

@@ -0,0 +1,19 @@
package bot;
import java.util.Scanner;
public class EscapeBot extends Bot {
public EscapeBot (String[] args){
super(args);
}
public static void main (String[] args){
EscapeBot escapebot = new EscapeBot(args);
escapebot.run();
}
@Override
protected char nextMove(View view) throws Exception { //Strategie: In einer Spirale laufen bis es die Rakete findet
//Suche nach der Rakete im Spielfeld
}
}

Loading…
Cancel
Save