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

11 lines
118 B
C++
Raw Normal View History

// #include "Roi.h"
2016-03-06 21:51:07 +00:00
Roi::Roi(int x, int y) : Piece(ROI, x, y) {
}
// ABSTRACT
char Roi::getchar(){
2016-03-08 18:23:35 +00:00
return 'K';
2016-03-06 21:51:07 +00:00
}