dbf-halloween2015

view src/opt.h @ 0:50683c78264e

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 00:09:12 +0200
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_ */