2P11/src/Model/Game.hpp

30 lines
435 B
C++
Raw Normal View History

2015-04-29 22:28:29 +04:00
#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>
2015-04-30 09:42:40 +02:00
#include <cstdlib>
2015-05-01 15:50:10 +02:00
#include "./Elements/StringElement.hpp"
2015-04-29 22:28:29 +04:00
#include "Grid.hpp"
class Game
{
2015-05-01 10:24:45 +02:00
private:
2015-05-02 11:06:54 +02:00
Grid *m_grid;
2015-05-01 10:24:45 +02:00
public:
Game();
~Game();
void pop();
void showGrid();
bool isOver();
2015-04-29 22:28:29 +04:00
};
2015-04-30 09:42:40 +02:00
#endif