implemented Method getWinner and getWinPoints

added Class City for later use.
This commit is contained in:
schrom01
2021-11-30 20:20:48 +01:00
parent 54b1d794f8
commit 3830cf6594
8 changed files with 64 additions and 10 deletions
+6 -1
View File
@@ -4,12 +4,14 @@ import org.beryx.textio.TextIO;
import org.beryx.textio.TextIoFactory;
import org.beryx.textio.TextTerminal;
import java.awt.*;
public class Siedler {
public static void main(String[] args) {
//Spiel erstellen
SiedlerGame game = new SiedlerGame(0, 0);
SiedlerGame game = new SiedlerGame(3, 2);
//Spielfeld ausgeben
TextIO textIO = TextIoFactory.getTextIO();
@@ -18,5 +20,8 @@ public class Siedler {
}
}