tavli

view src/opt.h @ 17:16a420432aa3

pieces on the board
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 28 Jun 2015 23:04:37 +0300
parents
children 986c0b76513f
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;
10 char *def_username, *saved_passwd;
12 vec3_t piece_color[2];
13 };
15 extern Options opt;
17 bool init_options(int argc, char **argv);
19 #endif /* OPT_H_ */