lab.cpp/Chess/dep/Pieces/Tour.cpp

14 lines
167 B
C++
Raw Normal View History

2016-03-06 21:51:07 +00:00
Tour::Tour(int x, int y) : Piece(TOUR, x, y) {
}
// ABSTRACT
bool Tour::can(const int x, const int y) const{
return true;
}
char Tour::getchar(){
return 'P';
}