tavli

view src/opt.h @ 24:0aadb519b5ee

correct highlighting
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 08 Jul 2015 15:11:58 +0300
parents 16a420432aa3
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;
11 char *def_username, *saved_passwd;
13 vec3_t piece_color[2];
14 };
16 extern Options opt;
18 bool init_options(int argc, char **argv);
20 #endif /* OPT_H_ */