summaryrefslogtreecommitdiff
path: root/raylib.ads
diff options
context:
space:
mode:
Diffstat (limited to 'raylib.ads')
-rw-r--r--raylib.ads10
1 files changed, 10 insertions, 0 deletions
diff --git a/raylib.ads b/raylib.ads
index d37a432..2beab5e 100644
--- a/raylib.ads
+++ b/raylib.ads
@@ -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;