]> ruin.nu Git - icfp05.git/blob - cop/cop.h
added initial cop class
[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 };
12 #endif