diff options
author | Adam Zadrożny <zadroznyadam@pm.me> | 2024-03-25 13:31:26 +0100 |
---|---|---|
committer | Adam Zadrożny <zadroznyadam@pm.me> | 2024-03-25 13:31:26 +0100 |
commit | 34f8acab833b9c2969e28109a29daa7dd0c162c4 (patch) | |
tree | 4b0fd58ffde3a18d107f3a0813e34ad329e0affa /raylib.ads | |
parent | 602691ae92c8abafd77342a1bb65d5de5c27a765 (diff) |
add support for running with right shift pressed
I personally find it much more convenient to use
my other hand to hold the shift to run.
The behaviour of left shift is left unchanged.
Diffstat (limited to 'raylib.ads')
-rw-r--r-- | raylib.ads | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -79,6 +79,7 @@ package Raylib is KEY_ESCAPE: constant int := 256; KEY_ENTER: constant Int := 257; KEY_LEFT_SHIFT: constant Int := 340; + KEY_RIGHT_SHIFT: constant Int := 344; function Is_Key_Pressed(key: int) return C_bool with |