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

11 lines
128 B
C++
Raw Normal View History

// #include "Reine.h"
2016-03-06 21:51:07 +00:00
Reine::Reine(int x, int y) : Piece(REINE, x, y) {
}
// ABSTRACT
char Reine::getchar(){
2016-03-08 18:23:35 +00:00
return 'Q';
2016-03-06 21:51:07 +00:00
}