diff options
author | rexim <reximkut@gmail.com> | 2024-03-25 02:15:03 +0700 |
---|---|---|
committer | rexim <reximkut@gmail.com> | 2024-03-25 02:15:20 +0700 |
commit | 4411c4fc37dc890095f5afc2e835889270100084 (patch) | |
tree | 9b6a94e70753571fce52854c43f597f3625e213d /raylib.ads | |
parent | 3bf2feb0b55230c676362c0a303873f66669529b (diff) |
Queue Player Commands #4
Diffstat (limited to 'raylib.ads')
-rw-r--r-- | raylib.ads | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -85,6 +85,11 @@ package Raylib is Import => True, Convention => C, External_Name => "IsKeyPressed"; + function Is_Key_Released(key: int) return C_bool + with + Import => True, + Convention => C, + External_Name => "IsKeyReleased"; function Get_Key_Pressed return int with Import => True, |