#ifndef DEF_ROI_H #define DEF_ROI_H /* [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 ChessContext& ctx, int x, int y); char getchar(); }; /* [n] Inclusion du corps =========================================================*/ #include "Roi.cpp" #endif