JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
c2d05c6ce23da06d3deebeddc11d7a01d54e9d45
[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 extern int opt_friction;
11
12 // Look and Feel
13 extern int opt_fullscreen;
14 extern int opt_music;
15 extern int opt_sound;
16 extern int opt_tail_engine;
17
18 struct argp argp;
19
20 void init_opts(void);
21
22 #endif // VOR_ARGS_H