lab.cpp/Chess/dep/Pieces/Fou.cpp

12 lines
143 B
C++
Raw Normal View History

// #include "Fou.h"
2016-03-06 21:51:07 +00:00
Fou::Fou(int x, int y) : Piece(FOU, x, y) {
}
// ABSTRACT
string Fou::getchar(){
return "\u265D";
return "\u2657";
2016-03-06 21:51:07 +00:00
}