ld33_umonster

view src/opt.h @ 0:4a6683050e29

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 22 Aug 2015 07:15:00 +0300
parents
children
line source
1 #ifndef OPT_H_
2 #define OPT_H_
4 #include "vmath/vmath.h"
6 struct Options {
7 int xres, yres;
8 bool fullscreen;
9 bool shadows, reflections;
10 };
12 extern Options opt;
14 bool init_options(int argc, char **argv);
16 #endif /* OPT_H_ */