diff options
Diffstat (limited to 'raymath.ads')
-rw-r--r-- | raymath.ads | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/raymath.ads b/raymath.ads index 18be3fe..1d38226 100644 --- a/raymath.ads +++ b/raymath.ads @@ -26,4 +26,10 @@ package Raymath is Import => True, Convention => C, External_Name => "Vector2Scale"; + type Vector3 is record + x: C_float; + y: C_float; + z: C_float; + end record + with Convention => C_Pass_By_Copy; end; |