lab.cpp/Chess/dep/Pieces/Reine.cpp

14 lines
172 B
C++
Raw Normal View History

2016-03-06 21:51:07 +00:00
Reine::Reine(int x, int y) : Piece(REINE, x, y) {
}
// ABSTRACT
bool Reine::can(const int x, const int y) const{
return true;
}
char Reine::getchar(){
return 'P';
}