JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
a71fd6362038b97cac65c4dd5592b2a6934bf363
[vor.git] / args.h
1 #ifndef VOR_ARGS_H
2 #define VOR_ARGS_H
3
4 #include <argp.h>
5
6 // Gameplay Variations
7 extern float opt_bounciness;
8 extern float opt_gamespeed;
9 extern float opt_max_lead;
10
11 // Look and Feel
12 extern int opt_fullscreen;
13 extern int opt_music;
14 extern int opt_sound;
15
16 int parse_opts(int argc, char *argv[]);
17
18 #endif // VOR_ARGS_H