End console clean game

This commit is contained in:
manzerbredes 2015-05-02 22:57:08 +02:00
parent 36d033caee
commit 1d09a0fd3a
8 changed files with 258 additions and 68 deletions

View file

@ -9,7 +9,9 @@
#include <iostream>
#include <string>
#include "../Helpers/Keyboard.hpp"
#include "Grid.hpp"
#include <tuple>
class Game
{
@ -19,7 +21,11 @@ class Game
public:
Game();
~Game();
bool swipe(kbdh::Direction direction);
void coutGrid();
void popRandomNumber();
bool isOver();
};
#endif