]> ruin.nu Git - icfp05.git/blobdiff - robber/robber.h
some restructuring
[icfp05.git] / robber / robber.h
index 11f5668d0b5c61db93fc7c1cb205c7600069a5fd..3ba087131bab24e56a281d6eae75dae645063b6b 100644 (file)
@@ -1,12 +1,16 @@
 #ifndef __ROBBER_H__
 #define __ROBBER_H__
 
-#include <bot.h>
+#include "bot.h"
 
 class Robber : public Bot {
        public:
-               Robber(std::string name):Bot(name,"robber"){};
+               Robber(std::string name):Bot(name,robber){};
                
                std::string turn();
+
+       protected:
+               std::string _oldLocation;
+               std::string _maybeNextLocation;
 };
 #endif