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

12 lines
148 B
C++
Raw Normal View History

// #include "Tour.h"
2016-03-06 21:51:07 +00:00
Tour::Tour(int x, int y) : Piece(TOUR, x, y) {
}
// ABSTRACT
string Tour::getchar(){
return "\u265C";
return "\u2656";
2016-03-06 21:51:07 +00:00
}