]> ruin.nu Git - icfp05.git/blobdiff - newrobber/robber.h
branched the robber for new idea
[icfp05.git] / newrobber / robber.h
diff --git a/newrobber/robber.h b/newrobber/robber.h
new file mode 100644 (file)
index 0000000..7624986
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef __ROBBER_H__
+#define __ROBBER_H__
+
+#include "../botsrc/bot.h"
+
+class Robber : public Bot {
+       public:
+               Robber(std::string name):Bot(name,robber){};
+               
+               std::string turn();
+
+       protected:
+               std::string _oldLocation;
+               std::string _maybeNextLocation;
+               virtual void move(std::string location);
+};
+#endif