blob: a644799caeb14502f244ba533b9d44a976b984e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef GAME_HPP
# define GAME_HPP
class Game
{
public:
Game(int s);
~Game();
int getSize();
int at(int x, int y);
private:
int size;
int **grid;
};
#endif
|