tavli

view src/opt.h @ 19:37dead56f01e

fixed shadows
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 29 Jun 2015 06:18:45 +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_ */