1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-21 08:45:06 -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
type
TType = record
TPasScriptType = record
TypeName, TypeDef: string;
end;
@ -54,7 +54,7 @@ type
TMPlugin = record
Methods: array of TMPluginMethod;
MethodLen: integer;
Types: array of TType;
Types: array of TPasScriptType;
TypesLen: integer;
end;
TMPluginArray = array of TMPlugin;