X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=robber%2Frobber.h;h=3ba087131bab24e56a281d6eae75dae645063b6b;hb=f4121d29718ebe595283200700956369776dbdca;hp=11f5668d0b5c61db93fc7c1cb205c7600069a5fd;hpb=dc67a266d0011df3e82a5c7231d12a52d01dfc39;p=icfp05.git diff --git a/robber/robber.h b/robber/robber.h index 11f5668..3ba0871 100644 --- a/robber/robber.h +++ b/robber/robber.h @@ -1,12 +1,16 @@ #ifndef __ROBBER_H__ #define __ROBBER_H__ -#include +#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