lab.cpp/Chess/dep/Pieces/Pion.cpp

11 lines
153 B
C++
Raw Normal View History

// #include "Pion.h"
2016-03-06 21:51:07 +00:00
Pion::Pion(int x, int y) : Piece(PION, x, y) {
}
// ABSTRACT
string Pion::getchar(){
return (_player) ? "\u265F" : "\u2659";
2016-03-06 21:51:07 +00:00
}