Browse Source

refactoring drawBoard- und switchPlayer- funktionen deklarieren, um Probleme zu lösen

remotes/origin/tictactoedev
Sabina Grisi 11 months ago
parent
commit
ae7183e618
  1. 8
      src/TicTacToe.c

8
src/TicTacToe.c

@ -1,6 +1,14 @@
#include <stdio.h>
#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;

Loading…
Cancel
Save