change to final_test
Dependencies: 4DGL-uLCD-SE EthernetInterface HTTPClient mbed-rtos mbed
Fork of Fianl_test by
board.h
- Committer:
- honelight
- Date:
- 2015-04-20
- Revision:
- 0:28f8ba171e86
File content as of revision 0:28f8ba171e86:
class Board { public: int check_victory(int playerID); void update_board(Board other_board); int ** get_board(); void set_board(int col, int row, int playerID); bool updateBoard(int turn, int printout); int updateBoard_output(int turn, int printout); void printBoard(); int turn; Board(void); private: int **board; };