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:
Brandon Jackson 2015-10-27 21:28:37 -05:00
parent d13b1661ee
commit 7733193a4b

View file

@ -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);
};
};