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

15 lines
170 B
C++

// #include "Tour.h"
Tour::Tour(int x, int y) : Piece(TOUR, x, y) {
}
// ABSTRACT
bool Tour::can(int x, int y){
return true;
}
char Tour::getchar(){
return 'T';
}