|
|
@@ -3,8 +3,12 @@ package bot; |
|
|
|
import java.util.Scanner; |
|
|
|
|
|
|
|
public class ManualBot extends Bot { |
|
|
|
|
|
|
|
private Scanner scanner; |
|
|
|
|
|
|
|
public ManualBot(String[] args) { |
|
|
|
super(args); |
|
|
|
this.scanner = new Scanner(System.in); |
|
|
|
} |
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
@@ -37,5 +41,10 @@ public class ManualBot extends Bot { |
|
|
|
System.out.println("Falsche Taste. Bitte geben Sie w, s, a, d oder q ein."); |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void run() { |
|
|
|
startCommunication(); |
|
|
|
// hier muss die Logik für die Verbindung implementiert werden |
|
|
|
} |
|
|
|
} |