2016-03-08 22:39:21 +00:00
|
|
|
// #include "Reine.h"
|
2016-03-06 21:51:07 +00:00
|
|
|
|
|
|
|
Reine::Reine(int x, int y) : Piece(REINE, x, y) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// ABSTRACT
|
2016-03-09 14:30:03 +00:00
|
|
|
string Reine::getchar(){
|
2016-03-09 14:44:38 +00:00
|
|
|
return (_player) ? "\u265B" : "\u2655";
|
2016-03-06 21:51:07 +00:00
|
|
|
}
|