From a0fdcd3db7c124d7ad419faaece76c272e630e87 Mon Sep 17 00:00:00 2001 From: Philipp Kotte Date: Tue, 10 Oct 2023 15:30:47 +0200 Subject: [PATCH] =?UTF-8?q?Spiel=20methodenk=C3=B6pfe=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Facade/Spiel.java | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/Facade/Spiel.java b/Facade/Spiel.java index e15af97..a6b1211 100644 --- a/Facade/Spiel.java +++ b/Facade/Spiel.java @@ -53,4 +53,44 @@ public class Spiel { // Gameloop? } + public String[] getSpielerAmZug() { + return new String[0]; + } + + public boolean istSpielGestartet() { + return this.istGestartet; + } + + public boolean istSpielBeendet() { + return this.istBeendet; + } + + public String[][] getBlock() { + return new String[0][0]; + } + + public String getGewinner() { + return ""; + } + + public int getRunde() { + return this.runde; + } + + public void mischer() { + + } + + public void austeilen() { + + } + + public void ausspielen(int idKarte) { + + } + + public void vorhersagen(int stiche) { + + } + } \ No newline at end of file