summaryrefslogtreecommitdiffhomepage
path: root/src/input.h
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2023-05-11 23:12:30 -0400
committerrealtradam <[email protected]>2023-05-11 23:12:30 -0400
commitc1f9d95c4a2de1aef9fa472888844156ffe9e5fe (patch)
tree8f089f736c4b125faa6b11ae503994b698462e39 /src/input.h
parentf76faadd38584ee923fc348e7342aff425904c59 (diff)
downloadrodeo_sample_game-c1f9d95c4a2de1aef9fa472888844156ffe9e5fe.tar.gz
rodeo_sample_game-c1f9d95c4a2de1aef9fa472888844156ffe9e5fe.zip
rodeo bump
Diffstat (limited to 'src/input.h')
-rw-r--r--src/input.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/input.h b/src/input.h
index cef1519..c03c454 100644
--- a/src/input.h
+++ b/src/input.h
@@ -11,6 +11,8 @@ struct
rodeo_input_command_t *up;
rodeo_input_command_t *down;
rodeo_input_command_t *play_sound;
+ rodeo_input_command_t *play_sound2;
+ rodeo_input_command_t *play_sound3;
}
scenes_and_commands_t;
@@ -58,6 +60,18 @@ play_sound_input(
void *data
);
+void*
+play_sound_input2(
+ rodeo_input_any_state_t *input_state,
+ void *data
+);
+
+void*
+play_sound_input3(
+ rodeo_input_any_state_t *input_state,
+ void *data
+);
+
void
register_inputs(void);