Make clean code

This commit is contained in:
manzerbredes 2015-05-02 19:26:01 +02:00
parent 27d646af15
commit 36d033caee
7 changed files with 103 additions and 231 deletions

View file

@ -8,24 +8,18 @@
* Date : 29/04/2015 */
#include <iostream>
#include <cstdlib>
#include <string>
#include "./Elements/StringElement.hpp"
#include "Grid.hpp"
class Game
{
private:
Grid *m_grid;
Grid m_grid;
public:
Game();
~Game();
void pop();
void showGrid();
void swipeRight();
bool isOver();
};
#endif