Fix major overstep with last commit
[carveJwlIkooP6JGAAIwe30JlM.git] / vg_config.h
index c1e751211ed8162392d18406c2728670e9a28128..626aef8979837f21b340f603c5bccc201ecc893a 100644 (file)
@@ -1,5 +1,6 @@
 // Copyright (C) 2021 Harry Godden (hgn) - All Rights Reserved
 #define VG_CONFIG
+#include "vg/vg.h"
 
 static struct button_binding vg_button_binds[] = 
 {
@@ -13,6 +14,15 @@ static struct button_binding vg_button_binds[] =
    { .name = "down", .bind = GLFW_KEY_F },
    { .name = "yawl", .bind = GLFW_KEY_Q },
    { .name = "yawr", .bind = GLFW_KEY_E },
+   { .name = "push", .bind = GLFW_KEY_T }
+};
+
+static struct button_binding vg_controller_binds[] = 
+{
+   { "push", GLFW_GAMEPAD_BUTTON_A },
+   { "break", GLFW_GAMEPAD_BUTTON_B },
+   { "switchmode", GLFW_GAMEPAD_BUTTON_Y },
+   { "jump", GLFW_GAMEPAD_BUTTON_X }
 };
 
 static struct axis_binding vg_axis_binds[] =