added optcfg and fixed camera xform
[cyberay] / src / game.h
1 #ifndef GAME_H_
2 #define GAME_H_
3
4 #include "level.h"
5
6 struct options {
7         int width, height;
8 };
9
10 extern struct level lvl;
11 extern struct options opt;
12
13 int init_options(int argc, char **argv);
14
15 #endif  /* GAME_H_ */