summaryrefslogtreecommitdiff
path: root/include/spacebot.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/spacebot.h')
-rw-r--r--include/spacebot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/spacebot.h b/include/spacebot.h
index 079b33e..9f7f83e 100644
--- a/include/spacebot.h
+++ b/include/spacebot.h
@@ -6,11 +6,11 @@
class Spacebot {
public:
- Spacebot(std::string outputPath);
+ Spacebot(std::string outputPath, std::string brainFilename);
void writeNextMove();
private:
std::string _outputFilename;
- std::string _networkConfigFilename;
+ std::string _brainFilename;
GameState _gameState;
void writeMove(const Move& move);