summary refs log tree commit diff stats
path: root/level.h
diff options
context:
space:
mode:
Diffstat (limited to 'level.h')
-rw-r--r--level.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/level.h b/level.h deleted file mode 100644 index 1cbb46f..0000000 --- a/level.h +++ /dev/null
@@ -1,20 +0,0 @@
1#ifndef LEVEL_H
2#define LEVEL_H
3
4class Level
5{
6 private:
7 int level;
8 Uint32 alive[5];
9 Uint32 dead[5];
10
11 public:
12 Level();
13 int getLevel();
14 int getLevelGroup();
15 bool checkSquare(int x, int y);
16 Uint32 getAliveColor();
17 Uint32 getDeadColor();
18};
19
20#endif