summaryrefslogtreecommitdiff
path: root/include/spacebot.h
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-08-01 22:50:00 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-08-01 22:50:00 +0200
commit2e6ecf423c8228ac8de4badf4fc2d037a876b7ff (patch)
tree82624e97a3d1ee47db05e320bf0014726f68c09d /include/spacebot.h
parent1f40ce6f3c710d6339d2001a56f401b6a9dcd525 (diff)
Reading network from file
Diffstat (limited to 'include/spacebot.h')
-rw-r--r--include/spacebot.h6
1 files changed, 4 insertions, 2 deletions
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();
};