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

14 lines
174 B
C++

Tour::Tour(int x, int y) : Piece(TOUR, x, y) {
}
// ABSTRACT
bool Tour::can(const ChessContext& ctx, int x, int y){
return true;
}
char Tour::getchar(){
return 'T';
}