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

14 lines
162 B
C++

Fou::Fou(int x, int y) : Piece(FOU, x, y) {
}
// ABSTRACT
bool Fou::can(const int x, const int y) const{
return true;
}
char Fou::getchar(){
return 'P';
}