From e6a53bb57e7c2e5ce17cdc10a51b40cd83ceb85e Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sun, 24 May 2015 22:24:31 +0200 Subject: Base bot --- include/spacebot.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/spacebot.h (limited to 'include') 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 +#include + +class Spacebot { +public: + Spacebot(const std::string& outputPath); + void writeNextMove(); +private: + std::ifstream mapStream; + std::ofstream resultStream; +}; -- cgit v1.2.3