]> ruin.nu Git - icfp05.git/blobdiff - copsrc/cop.h
renamed dirs
[icfp05.git] / copsrc / cop.h
diff --git a/copsrc/cop.h b/copsrc/cop.h
new file mode 100644 (file)
index 0000000..42cb778
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef __COP_H__
+#define __COP_H__
+
+#include <bot.h>
+
+class Cop : public Bot {
+       public:
+               Cop(std::string name):Bot(name,cop_foot){};
+               
+               std::string turn();
+       protected:
+               void sendInformation();
+               void getInformation();
+               void sendPlan();
+               void getPlans();
+               void vote();
+};
+#endif