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

11 lines
123 B
C++

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