lab.cpp/Chess/dep/Pieces/Pion.cpp

15 lines
170 B
C++

// #include "Pion.h"
Pion::Pion(int x, int y) : Piece(PION, x, y) {
}
// ABSTRACT
bool Pion::can(int x, int y){
return true;
}
char Pion::getchar(){
return 'P';
}