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