diff options
Diffstat (limited to 'libs/assimp/port/AssimpDelphi/aiVector2D.pas')
-rw-r--r-- | libs/assimp/port/AssimpDelphi/aiVector2D.pas | 13 |
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.
|