]> ruin.nu Git - icfp05.git/blob - cop/cop.h
some restructuring
[icfp05.git] / cop / cop.h
1 #ifndef __COP_H__
2 #define __COP_H__
3
4 #include <bot.h>
5
6 class Cop : public Bot {
7         public:
8                 Cop(std::string name):Bot(name,cop_foot){};
9                 
10                 std::string turn();
11         protected:
12                 void sendInformation();
13                 void getInformation();
14                 void sendPlan();
15                 void getPlans();
16                 void vote();
17 };
18 #endif