summaryrefslogtreecommitdiff
path: root/raylib.adb
diff options
context:
space:
mode:
authorrexim <reximkut@gmail.com>2024-03-21 02:28:47 +0700
committerrexim <reximkut@gmail.com>2024-03-21 02:28:47 +0700
commit3fad142df592a37458fd2f511f4688452ec41904 (patch)
tree0b27b94c31ed9e375c7dee90f9d88ea2ba694f3a /raylib.adb
parent1298c054ab13456a79a1945fd37720aa2ffee8e5 (diff)
Animate transition between the eye states
Diffstat (limited to 'raylib.adb')
-rw-r--r--raylib.adb12
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;