summaryrefslogtreecommitdiff
path: root/raymath.ads
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 /raymath.ads
parent1298c054ab13456a79a1945fd37720aa2ffee8e5 (diff)
Animate transition between the eye states
Diffstat (limited to 'raymath.ads')
-rw-r--r--raymath.ads5
1 files changed, 5 insertions, 0 deletions
diff --git a/raymath.ads b/raymath.ads
index 4447d45..81f2a37 100644
--- a/raymath.ads
+++ b/raymath.ads
@@ -42,4 +42,9 @@ package Raymath is
z: C_float;
end record
with Convention => C_Pass_By_Copy;
+ function Vector2_Lerp(V1, V2: Vector2; Amount: C_Float) return Vector2
+ with
+ Import => True,
+ Convention => C,
+ External_Name => "Vector2Lerp";
end;