]> ruin.nu Git - icfp05.git/blob - robber/robber.h
initial commit
[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 #endif