updated readme
[andemo] / src / cfgopt.h
1 #ifndef CFGOPT_H_
2 #define CFGOPT_H_
3
4 struct options {
5         const char *scrname;
6         int fullscreen;
7         int vsync;
8         int music;
9 };
10
11 extern struct options opt;
12
13 int parse_args(int argc, char **argv);
14 int load_config(const char *fname);
15
16 #endif  /* CFGOPT_H_ */