lab.cpp/Chess/dep/Pieces/Roi.cpp

14 lines
162 B
C++
Raw Normal View History

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