Skip to content

Commit

Permalink
KDTree export correction
Browse files Browse the repository at this point in the history
  • Loading branch information
slackydev committed Dec 27, 2024
1 parent 9fbb270 commit aadb12f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/script/imports/simba.import_kdtree.pas
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ procedure ImportKDTree(Script: TSimbaScript);
addGlobalType('array of TKDNode;', 'TKDNodeArray');
addGlobalType('array of PKDNode;', 'TKDNodeRefArray');

addGlobalType('record Dimensions: Int32; Data: TSlackArray; Size: Integer; end;', 'TKDTree');
addGlobalType('record Dimensions: Int32; Data: TKDNodeArray; Size: Integer; end;', 'TKDTree');

addGlobalFunc('function TKDTree.RefArray(): TKDNodeRefArray;', @_LapeKDTreeRefArray);
addGlobalFunc('function TKDTree.GetItem(i:Int32): PKDNode;', @_LapeKDTreeGetItem);
Expand Down

0 comments on commit aadb12f

Please sign in to comment.