diff --git a/src/TicTacToe.c b/src/TicTacToe.c index b8d825d..ff46c98 100644 --- a/src/TicTacToe.c +++ b/src/TicTacToe.c @@ -1,6 +1,14 @@ #include #include "TicTacToe.h" +//Funktionen deklarieren +// Funktion zum Zeichnen der Tafel +void drawBoard(int pos1, int pos2, int pos3, int pos4, int pos5, int pos6, int pos7, int pos8, int pos9); + +// Funktion zum Wechseln des aktuellen Spielers +int switchPlayer(int currentPlayer); + + int main() { int pos1 = 1; int pos2 = 2;