From 3fad142df592a37458fd2f511f4688452ec41904 Mon Sep 17 00:00:00 2001 From: rexim Date: Thu, 21 Mar 2024 02:28:47 +0700 Subject: Animate transition between the eye states --- raylib.adb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 raylib.adb (limited to 'raylib.adb') 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; -- cgit v1.2.3