Skip to content

Commit

Permalink
Fix docgen
Browse files Browse the repository at this point in the history
  • Loading branch information
ollydev committed Dec 3, 2023
1 parent 2a8ec1c commit e6e20de
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions DocGen/docgen.simba
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ SomeMethod(123)

const
SOURCE_SEARCH_PATHS = [
'Source\script\imports\simba\',
'Source\script\imports\simbaclasses\'
'Source\script\imports\'
];

function Indent(Str: String; Size: Integer): String;
Expand Down Expand Up @@ -205,10 +204,9 @@ begin
ParseSourceFile('simba.import_misc', 'Misc' );
ParseSourceFile('simba.import_matrix', 'Matrix' );
ParseSourceFile('simba.import_dialogs', 'Dialogs' );

ParseSourceFile('simba.import_class_json', 'JSON' );
ParseSourceFile('simba.import_class_image', 'Image' );
ParseSourceFile('simba.import_class_dtm', 'DTM' );
ParseSourceFile('simba.import_json', 'JSON' );
ParseSourceFile('simba.import_image', 'Image' );
ParseSourceFile('simba.import_dtm', 'DTM' );
end;

procedure H2ToH3(dir: String);
Expand Down

0 comments on commit e6e20de

Please sign in to comment.