From fad0e37d8e3f59bcc54e0460d6cc75fd77cc480d Mon Sep 17 00:00:00 2001 From: fdai7723 Date: Wed, 7 Feb 2024 20:00:32 +0000 Subject: [PATCH] =?UTF-8?q?Updated=20Misc.c=20WiP,=20Hendrik=20Vo=C3=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Misc.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Misc.c b/src/Misc.c index 2380bb5..94b8292 100644 --- a/src/Misc.c +++ b/src/Misc.c @@ -20,5 +20,16 @@ bool king_alive(char** brett) { return white_king_found && black_king_found; } +void spiel(char** brett) { + + + if(king_alive(brett)) { + // spiel läuft noch + } else { + // Spielende + } + + +} // Während der Laufzeit des Spiels neue Features hinzufügen