fixed post-merge problems

This commit is contained in:
MaurizioBruetsch 2017-10-16 20:11:48 +02:00
parent c0db993f39
commit 367edd393b

View file

@ -9,6 +9,6 @@ public class Main {
public static void main(String[] args) {
Player p1 = new MalteAI("Malte");
Player p2 = new MaurizioAI("Maurizio");
new Game(p1, p2).start();
new Game(p1, p2).start(true, true);// output mode and random mode
}
}