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

11 lines
148 B
C++

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