Updated startGame to take an int as an argument
This is necessary because the server requires a port number to launch.
This commit is contained in:
parent
d13b1661ee
commit
7733193a4b
1 changed files with 2 additions and 2 deletions
4
Engine.h
4
Engine.h
|
@ -9,8 +9,8 @@ class Engine {
|
|||
|
||||
public:
|
||||
Engine();
|
||||
void startGame();
|
||||
void startGame(int port);
|
||||
void easyAI();
|
||||
void AI();
|
||||
moves minMax(Board* temp, moves m, int c);
|
||||
};
|
||||
};
|
||||
|
|
Reference in a new issue