]> ruin.nu Git - icfp05.git/blob - cop/cop.cpp
added initial cop class
[icfp05.git] / cop / cop.cpp
1 #include "cop.h"
2 #include <iostream>
3 #include <iterator>
4 #include <cmath>
5
6 using namespace std;
7 using namespace __gnu_cxx;
8
9 string Cop::turn(){
10         
11         return _location;
12 }
13
14 int main(){
15         Cop cop("cop");
16         cop.play();
17
18         return 0;
19 }