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

31 lines
569 B
C
Raw Normal View History

2016-03-08 18:23:35 +00:00
#ifndef DEF_FOU_H
2016-03-06 21:51:07 +00:00
2016-03-08 18:23:35 +00:00
#define DEF_FOU_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 Fou : public Piece{
public:
Fou(int x, int y);
// ABSTRACT
2016-03-08 18:23:35 +00:00
bool can(const ChessContext& ctx, int x, int y);
2016-03-06 21:51:07 +00:00
char getchar();
};
/* [n] Inclusion du corps
=========================================================*/
2016-03-08 20:06:36 +00:00
// #include "Fou.cpp"
2016-03-06 21:51:07 +00:00
#endif