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

30 lines
519 B
C
Raw Normal View History

2016-03-08 18:23:35 +00:00
#ifndef DEF_PION_H
2016-03-06 21:51:07 +00:00
2016-03-08 18:23:35 +00:00
#define DEF_PION_H
2016-03-06 21:51:07 +00:00
/* [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
char getchar();
};
/* [n] Inclusion du corps
=========================================================*/
#include "Pion.cpp"
#endif