summaryrefslogtreecommitdiff
path: root/include/spacebot.h
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-08-02 19:01:01 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-08-02 19:01:01 +0200
commit87ef7e90829053b7bc336f7316c3facb6c51e781 (patch)
tree0dbe68a138211d0099c602a97efc53b65bf8ffc8 /include/spacebot.h
parent2e6ecf423c8228ac8de4badf4fc2d037a876b7ff (diff)
Reading brain in from a file
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);