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

12 lines
143 B
C++

// #include "Fou.h"
Fou::Fou(int x, int y) : Piece(FOU, x, y) {
}
// ABSTRACT
string Fou::getchar(){
return "\u265D";
return "\u2657";
}