diff options
| author | xolatile | 2024-03-20 03:27:49 -0400 |
|---|---|---|
| committer | xolatile | 2024-03-20 03:27:49 -0400 |
| commit | e544033ed824c2c70c2ba91e5cb5dafd1a86613f (patch) | |
| tree | 4a1f5bac012ecc9f81e1a448eb7c3d1fd24c3633 /raylib.ads | |
| parent | 8acb71cadcb3346ee0f305860c85257fa1f3bd7c (diff) | |
| download | xolatile-raylib-ada-e544033ed824c2c70c2ba91e5cb5dafd1a86613f.tar.xz xolatile-raylib-ada-e544033ed824c2c70c2ba91e5cb5dafd1a86613f.tar.zst | |
Testing DrawTextEx...
Diffstat (limited to 'raylib.ads')
| -rw-r--r-- | raylib.ads | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -3020,10 +3020,17 @@ package Raylib is Convention => C, External_Name => "DrawText"; - --~procedure DrawTextEx (Font font, const char *text, Vector2 position, float fontSize, float spacing, Color tint) with - --~Import => True, - --~Convention => C, - --~External_Name => ""; + procedure Draw_Text_Ex ( + Data : Font := Get_Font_Default; + Text : String := ""; + Position : Vector_2D := (0.0, 0.0); + Font_Size : Float := 0.0; + Spacing : Float := 0.0; + Tint : Color := White + ) with + Import => True, + Convention => C, + External_Name => "DrawTextEx"; procedure Draw_Text_Pro ( Data : Font := Get_Font_Default; |
