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

30 lines
524 B
C
Raw Normal View History

2016-03-08 18:23:35 +00:00
#ifndef DEF_REINE_H
2016-03-06 21:51:07 +00:00
2016-03-08 18:23:35 +00:00
#define DEF_REINE_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 Reine : public Piece{
public:
Reine(int x, int y);
// ABSTRACT
char getchar();
};
/* [n] Inclusion du corps
=========================================================*/
#include "Reine.cpp"
2016-03-06 21:51:07 +00:00
#endif