diff options
Diffstat (limited to 'raymath.ads')
-rw-r--r-- | raymath.ads | 5 |
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; |