summaryrefslogtreecommitdiff
path: root/libs/assimp/port/AssimpDelphi/aiVector2D.pas
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-04-16 11:55:09 -0500
committersanine <sanine.not@pm.me>2022-04-16 11:55:09 -0500
commitdb81b925d776103326128bf629cbdda576a223e7 (patch)
tree58bea8155c686733310009f6bed7363f91fbeb9d /libs/assimp/port/AssimpDelphi/aiVector2D.pas
parent55860037b14fb3893ba21cf2654c83d349cc1082 (diff)
move 3rd-party librarys into libs/ and add built-in honeysuckle
Diffstat (limited to 'libs/assimp/port/AssimpDelphi/aiVector2D.pas')
-rw-r--r--libs/assimp/port/AssimpDelphi/aiVector2D.pas13
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/assimp/port/AssimpDelphi/aiVector2D.pas b/libs/assimp/port/AssimpDelphi/aiVector2D.pas
new file mode 100644
index 0000000..1e88209
--- /dev/null
+++ b/libs/assimp/port/AssimpDelphi/aiVector2D.pas
@@ -0,0 +1,13 @@
+unit aiVector2D;
+
+interface
+
+type TaiVector2D = packed record
+ x, y: single;
+end;
+type PaiVector2D = ^TaiVector2D;
+
+
+implementation
+
+end.