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,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);