diff options
| author | realtradam <[email protected]> | 2023-04-24 03:58:04 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-04-24 03:58:04 -0400 |
| commit | 8f42815db1d3636c3fddc696b626c54ca7896d32 (patch) | |
| tree | c8b691f85704abbe3becd21e6dac5efba17f4028 /include/rodeo/input.h | |
| parent | 92b561030f7f713fc4e2893de05fdc7a06c8a139 (diff) | |
| download | RodeoKit-8f42815db1d3636c3fddc696b626c54ca7896d32.tar.gz RodeoKit-8f42815db1d3636c3fddc696b626c54ca7896d32.zip | |
added unbounded ranges for the input system
Diffstat (limited to 'include/rodeo/input.h')
| -rw-r--r-- | include/rodeo/input.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/rodeo/input.h b/include/rodeo/input.h index 41a7849..8d3d775 100644 --- a/include/rodeo/input.h +++ b/include/rodeo/input.h @@ -48,7 +48,13 @@ rodeo_input_command_register_binary_mouseButton( bool rodeo_input_command_register_positional_mouse( rodeo_input_command_t *input_command, - rodeo_input_positional_mouse_t mouse_position + rodeo_input_positional_mouse_t mouse_axis +); + +bool +rodeo_input_command_register_unboundedRange_mouse( + rodeo_input_command_t *input_command, + rodeo_input_unboundedRange_mouse_t mouse_axis ); // alternative proposed "general" registration methods |
