diff options
author | rexim <reximkut@gmail.com> | 2024-03-10 23:07:17 +0700 |
---|---|---|
committer | rexim <reximkut@gmail.com> | 2024-03-10 23:07:17 +0700 |
commit | 5a89655e5a6e0d91eb6dcb1968ffc99b5fe0f7c5 (patch) | |
tree | c55dc5fa0ced31a4b580d2a1b94e040cd2dc2291 /raylib.ads | |
parent | 8719bb05efc99018735a5ede75c78386fafa0a6a (diff) |
Lock FPS to 60
Diffstat (limited to 'raylib.ads')
-rw-r--r-- | raylib.ads | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -131,4 +131,14 @@ package Raylib is Import => True, Convention => C, External_Name => "DrawText"; + procedure Set_Target_FPS(Fps: int) + with + Import => True, + Convention => C, + External_Name => "SetTargetFPS"; + procedure Draw_FPS(PosX, PosY: Int) + with + Import => True, + Convention => C, + External_Name => "DrawFPS"; end Raylib; |