diff options
author | rexim <reximkut@gmail.com> | 2024-03-14 02:33:53 +0700 |
---|---|---|
committer | rexim <reximkut@gmail.com> | 2024-03-14 02:33:53 +0700 |
commit | ed9fa76925909f94512ef70280b90712e35c3ab7 (patch) | |
tree | 96d4e2a6258a468d37b6b61c43ce7b132aec19e3 /raymath.ads | |
parent | b081abc78ef9fd0c511b35eeabffdddba61cdd43 (diff) |
Introduce rough implementation of the palette editor
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; |