]> ruin.nu Git - icfp05.git/blob - cop/cop.h
23533a686266c8cbb9e831d080bd6f3d62a4c896
[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