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

12 lines
143 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
string Roi::getchar(){
return "\u265A";
return "\u2654";
2016-03-06 21:51:07 +00:00
}