diff options
Diffstat (limited to 'raylib.adb')
-rw-r--r-- | raylib.adb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/raylib.adb b/raylib.adb new file mode 100644 index 0000000..89fe8af --- /dev/null +++ b/raylib.adb @@ -0,0 +1,12 @@ +package body Raylib is + procedure Draw_Triangle_Strip(Points: Vector2_Array; C: Color) is + procedure Draw_Triangle_Strip_C(Points: Vector2_Array; Point_Count: Int; C: Color) + with + Import => True, + Convention => C, + External_Name => "DrawTriangleStrip"; + begin + Draw_Triangle_Strip_C(Points, Points'Length, C); + end; + +end Raylib; |