cheat-engine/standalone/Userdefinedformunit.pas
cheatengine@gmail.com 4d297adfd2
2011-07-04 19:52:19 +00:00

34 lines
644 B
ObjectPascal

unit Userdefinedformunit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,extratrainercomponents;
type
TUserdefinedform = class(TForm)
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
cheatlist: array of tcheatlist;
cheat: array of tcheat;
end;
var
Userdefinedform: TUserdefinedform;
implementation
{$R *.dfm}
procedure TUserdefinedform.FormClose(Sender: TObject;
var Action: TCloseAction);
begin
application.Terminate;
end;
end.