ld33_umonster

view src/opt.h @ 5:1e8d90aeae34

added Mesh::texcoord_gen_cylinder()
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 23 Aug 2015 04:45:24 +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_ */