lab.cpp/Chess/dep/Pieces/Tour.cpp

15 lines
192 B
C++
Raw Normal View History

2016-03-08 20:06:36 +00:00
#include "Tour.h"
2016-03-06 21:51:07 +00:00
Tour::Tour(int x, int y) : Piece(TOUR, x, y) {
}
// ABSTRACT
2016-03-08 18:23:35 +00:00
bool Tour::can(const ChessContext& ctx, int x, int y){
2016-03-06 21:51:07 +00:00
return true;
}
char Tour::getchar(){
2016-03-08 18:23:35 +00:00
return 'T';
2016-03-06 21:51:07 +00:00
}