From 7733193a4b4727f4b41c03399b5c4a52758b8cad Mon Sep 17 00:00:00 2001 From: Brandon Jackson <1drummer@att.net> Date: Tue, 27 Oct 2015 21:28:37 -0500 Subject: [PATCH] Updated startGame to take an int as an argument This is necessary because the server requires a port number to launch. --- Engine.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Engine.h b/Engine.h index 97efbf8..642ae82 100755 --- a/Engine.h +++ b/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); -}; \ No newline at end of file +};