Dateien hochladen nach „“

This commit is contained in:
Aylin Goekce 2023-12-21 16:18:40 +00:00
parent b66fd388f4
commit 3f64df6fc4

19
EscapeBot.java Normal file
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
}
}