]> ruin.nu Git - icfp05.git/blobdiff - robbersrc/robber.h
renamed dirs
[icfp05.git] / robbersrc / robber.h
diff --git a/robbersrc/robber.h b/robbersrc/robber.h
new file mode 100644 (file)
index 0000000..3ba0871
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef __ROBBER_H__
+#define __ROBBER_H__
+
+#include "bot.h"
+
+class Robber : public Bot {
+       public:
+               Robber(std::string name):Bot(name,robber){};
+               
+               std::string turn();
+
+       protected:
+               std::string _oldLocation;
+               std::string _maybeNextLocation;
+};
+#endif