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

31 lines
555 B
C
Raw Normal View History

2016-03-06 21:51:07 +00:00
#ifndef DEF_Roi
#define DEF_Roi
/* [1] Libs
=========================================================*/
/* (1) Internes */
/* (2) Externes */
#include "Piece.h"
/* (3) Namespace */
using namespace std;
/* [2] Definition
=========================================================*/
class Roi : public Piece{
public:
Roi(int x, int y);
// ABSTRACT
bool can(const int x, const int y) const;
char getchar();
};
/* [n] Inclusion du corps
=========================================================*/
#include "Roi.cpp"
#endif