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

15 lines
198 B
C++
Raw Normal View History

2016-03-08 20:06:36 +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-08 18:23:35 +00:00
bool Reine::can(const ChessContext& ctx, int x, int y){
2016-03-06 21:51:07 +00:00
return true;
}
char Reine::getchar(){
2016-03-08 18:23:35 +00:00
return 'Q';
2016-03-06 21:51:07 +00:00
}