diff options
author | Alexey Kutepov <reximkut@gmail.com> | 2024-03-26 19:38:50 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-26 19:38:50 +0700 |
commit | 65a0d69e952b0b0ae8125017c51eaaae1e6bafc7 (patch) | |
tree | dd905caf4a2acaed51433b201517ead044a2ee6c /raylib.ads | |
parent | 3cbc69d86f1a06129eed82345dcc6d4cca28ffd0 (diff) | |
parent | 34f8acab833b9c2969e28109a29daa7dd0c162c4 (diff) |
Merge pull request #18 from cornishon/right_shift_also
Add support for running with right shift
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 |