blob: 275547a607bcee9b060d690035982242cbd90ef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
struct window {
sfVideoMode mode;
sfRenderWindow *window;
sfEvent event;
};
struct game {
int isStarted;
int scoreCurrent;
int level;
int moveLatency;
int lines;
};
|