Dateien hochladen nach „“
This commit is contained in:
parent
b66fd388f4
commit
3f64df6fc4
19
EscapeBot.java
Normal file
19
EscapeBot.java
Normal 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…
x
Reference in New Issue
Block a user