Correct space

This commit is contained in:
manzerbredes 2015-05-01 10:24:45 +02:00
parent 40e0b381c1
commit 9f07e3c6bd
2 changed files with 107 additions and 107 deletions

View file

@ -14,17 +14,17 @@
class Game
{
private:
Grid * m_grid;
public:
Game();
~Game();
void play();
void pop();
void showGrid();
bool isOver();
private:
Grid * m_grid;
public:
Game();
~Game();
void play();
void pop();
void showGrid();
bool isOver();
};
#endif