JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
joysticks: configurable, working, buttons enable
[vor.git] / args.h
diff --git a/args.h b/args.h
index bf49c60..3f906e9 100644 (file)
--- a/args.h
+++ b/args.h
@@ -1,22 +1,16 @@
 #ifndef VOR_ARGS_H
 #define VOR_ARGS_H
 
-#include <argp.h>
-
-// Gameplay Variations
-extern float opt_bounciness;
-extern float opt_gamespeed;
-extern float opt_max_lead;
-
 // Look and Feel
 extern int opt_fullscreen;
-extern int opt_music;
 extern int opt_sound;
+extern int opt_joystick_enabled;
+extern int opt_joystick_number;
+extern int opt_joystick_x_axis;
+extern int opt_joystick_y_axis;
 
-#ifndef WIN32
-struct argp argp;
-#endif
+extern int opt_autopilot;
 
-void init_opts(void);
+int parse_opts(int argc, char *argv[]);
 
 #endif // VOR_ARGS_H