1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-21 16:55:01 -05:00

Simba: TType renamed to TPasScriptType.

This commit is contained in:
John P (Dgby714) 2010-12-23 08:37:26 -05:00 committed by Merlijn Wajer
parent 9778b2e6e6
commit ec32d53ba7

View File

@ -41,7 +41,7 @@ const
cv_Register = 1; //Register cv_Register = 1; //Register
type type
TType = record TPasScriptType = record
TypeName, TypeDef: string; TypeName, TypeDef: string;
end; end;
@ -54,7 +54,7 @@ type
TMPlugin = record TMPlugin = record
Methods: array of TMPluginMethod; Methods: array of TMPluginMethod;
MethodLen: integer; MethodLen: integer;
Types: array of TType; Types: array of TPasScriptType;
TypesLen: integer; TypesLen: integer;
end; end;
TMPluginArray = array of TMPlugin; TMPluginArray = array of TMPlugin;