ld33_umonster

view src/opt.h @ 10:1b30bd381667

sweep curve mesh gen and dragon horns
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 27 Aug 2015 05:25:04 +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_ */