blob: 0b2ee4d8b3eac6a4e3be1b27804d5b593de9de33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#ifndef DEF_GAME
#define DEF_GAME
/* Game.h
* Defines the class Game
* A game allows a player to play. It contains a grid and pops numbers
* Creators : krilius, manzerbredes
* Date : 29/04/2015 */
#include <iostream>
#include <string>
#include "../Helpers/Keyboard.hpp"
#include "Grid.hpp"
#include <tuple>
class Game
{
private:
//Members
Grid m_grid;
int m_score;
int m_nbMove;
public:
//Constructor and Destructor
Game();
~Game();
//Helpers
bool swipe(kbdh::Direction direction);
void coutGrid();
void popRandomNumber();
bool isOver();
//Getters and Setters
int getScore();
int getNbMove();
};
#endif
|