]> ruin.nu Git - icfp05.git/blob - robber/robber.h
some restructuring
[icfp05.git] / robber / robber.h
1 #ifndef __ROBBER_H__
2 #define __ROBBER_H__
3
4 #include "bot.h"
5
6 class Robber : public Bot {
7         public:
8                 Robber(std::string name):Bot(name,robber){};
9                 
10                 std::string turn();
11
12         protected:
13                 std::string _oldLocation;
14                 std::string _maybeNextLocation;
15 };
16 #endif