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

30 lines
521 B
C++

#ifndef DEF_PION_H
#define DEF_PION_H
/* [1] Libs
=========================================================*/
/* (1) Internes */
/* (2) Externes */
#include "Piece.h"
/* (3) Namespace */
using namespace std;
/* [2] Definition
=========================================================*/
class Pion : public Piece{
public:
Pion(int x, int y);
// ABSTRACT
string getchar();
};
/* [n] Inclusion du corps
=========================================================*/
#include "Pion.cpp"
#endif