lab.cpp/Chess/dep/Pieces/Fou.cpp

11 lines
118 B
C++
Raw Normal View History

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