Improving C++ API
[progcomp2013.git] / agents / silverfish / silverfish.h
1 #ifndef _SILVERFISH_H
2 #define _SILVERFISH_H
3
4 #include "agent.h"
5
6 class Silver : public Agent
7 {
8         public:
9                 Silver(const std::string & colour);
10                 Silver(const std::string & colour, const std::map<Piece::Type, double> & new_values);
11                 virtual ~Silver() {}
12                 
13                 virtual Square & Select();
14                 virtual Square & Move();
15
16                 std::map<Piece::Type, double> values;
17 };
18
19
20 #endif //_SILVERFISH_H

UCC git Repository :: git.ucc.asn.au