14 lines
172 B
C++
14 lines
172 B
C++
|
|
||
|
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';
|
||
|
}
|