From 2e6ecf423c8228ac8de4badf4fc2d037a876b7ff Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sat, 1 Aug 2015 22:50:00 +0200 Subject: Reading network from file --- include/spacebot.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include/spacebot.h') diff --git a/include/spacebot.h b/include/spacebot.h index 9b89383..079b33e 100644 --- a/include/spacebot.h +++ b/include/spacebot.h @@ -9,8 +9,10 @@ public: Spacebot(std::string outputPath); void writeNextMove(); private: - std::string outputFilename; - GameState gameState; + std::string _outputFilename; + std::string _networkConfigFilename; + GameState _gameState; + void writeMove(const Move& move); Move chooseMove(); }; -- cgit v1.2.3