summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-06-08 20:28:34 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-06-08 20:28:34 +0200
commit0ef4646a9c19d3d88ffb7674123ccdc0a9012d98 (patch)
tree9504a288bb693bd1db6fbade32a76174294faa53 /src
parent7073d9f97b54f41d227b960d05dd28af74d5776d (diff)
Added build for test project
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;
-}