lab.cpp/Chess/dep/Pieces/Reine.cpp

12 lines
153 B
C++
Raw Normal View History

// #include "Reine.h"
2016-03-06 21:51:07 +00:00
Reine::Reine(int x, int y) : Piece(REINE, x, y) {
}
// ABSTRACT
string Reine::getchar(){
return "\u265B";
return "\u2655";
2016-03-06 21:51:07 +00:00
}