38 lines
697 B
C
38 lines
697 B
C
|
#ifndef DEF_CHESSCONTEXT_H
|
||
|
|
||
|
#define DEF_CHESSCONTEXT_H
|
||
|
|
||
|
/* [1] Libs
|
||
|
=========================================================*/
|
||
|
/* (1) Internes */
|
||
|
#include <iostream>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
/* (2) Externes */
|
||
|
#include "term.h"
|
||
|
#include "Player.h"
|
||
|
|
||
|
/* (3) Namespace */
|
||
|
using namespace std;
|
||
|
|
||
|
|
||
|
/* [2] Definition
|
||
|
=========================================================*/
|
||
|
class ChessContext{
|
||
|
public:
|
||
|
ChessContext();
|
||
|
void init();
|
||
|
Player* at(const int x, const int y);
|
||
|
|
||
|
// ATTRIBUTS
|
||
|
char _turn;
|
||
|
Player *_p1;
|
||
|
Player *_p2;
|
||
|
};
|
||
|
|
||
|
/* [n] Inclusion du corps
|
||
|
=========================================================*/
|
||
|
#include "ChessContext.cpp"
|
||
|
|
||
|
#endif
|