Browse Source

Header aktualisiert

remotes/origin/Simon
Simon Hildebrandt 11 months ago
parent
commit
9adde5c98e
  1. 4
      src/main/c/TicTacToe.h

4
src/main/c/TicTacToe.h

@ -1,7 +1,11 @@
#ifndef TICTACTOE_H #ifndef TICTACTOE_H
#define TICTACTOE_H #define TICTACTOE_H
void initializeBoard(char board[3][3]);
void displayBoard(char board[3][3]);
int Winner(char board[3][3]); int Winner(char board[3][3]);
void makeMove(char board[3][3], int row, int col);
int TicTacToe_ausfuehren();
#endif #endif
Loading…
Cancel
Save