JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed debug stuff because it ws useless.
[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 struct argp argp;
17
18 void init_opts(void);
19
20 #endif // VOR_ARGS_H