summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/spacebot.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/spacebot.h b/include/spacebot.h
new file mode 100644
index 0000000..920eb73
--- /dev/null
+++ b/include/spacebot.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <iostream>
+#include <fstream>
+
+class Spacebot {
+public:
+ Spacebot(const std::string& outputPath);
+ void writeNextMove();
+private:
+ std::ifstream mapStream;
+ std::ofstream resultStream;
+};