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

11 lines
148 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 (_player) ? "\u265D" : "\u2657";
2016-03-06 21:51:07 +00:00
}