summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/main.cpp b/src/main.cpp
deleted file mode 100644
index 578620c..0000000
--- a/src/main.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <iostream>
-#include <string>
-
-#include "spacebot.h"
-
-int main(int argc, char* argv[])
-{
- if (argc < 2) {
- std::cout << "usage: " << argv[0] << " <output folder>" << std::endl;
- return 1;
- }
-
- Spacebot bot(argv[1]);
- bot.writeNextMove();
-
- return 0;
-}