summaryrefslogtreecommitdiff
path: root/include/spacebot.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/spacebot.h')
-rw-r--r--include/spacebot.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/spacebot.h b/include/spacebot.h
index 920eb73..a5c23c2 100644
--- a/include/spacebot.h
+++ b/include/spacebot.h
@@ -2,6 +2,7 @@
#include <iostream>
#include <fstream>
+#include "move.h"
class Spacebot {
public:
@@ -10,4 +11,6 @@ public:
private:
std::ifstream mapStream;
std::ofstream resultStream;
+ void writeMove(const Move& move);
+ Move chooseMove();
};