summaryrefslogtreecommitdiff
path: root/include/spacebot.h
diff options
context:
space:
mode:
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();
};