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
2
Engine.h
2
Engine.h
|
@ -9,7 +9,7 @@ class Engine {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Engine();
|
Engine();
|
||||||
void startGame();
|
void startGame(int port);
|
||||||
void easyAI();
|
void easyAI();
|
||||||
void AI();
|
void AI();
|
||||||
moves minMax(Board* temp, moves m, int c);
|
moves minMax(Board* temp, moves m, int c);
|
||||||
|
|
Reference in a new issue