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

27 lines
471 B
ObjectPascal

unit exampletrainerstyle1unit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, CheckLst, ExtCtrls;
type
TExampletrainerstyle1 = class(TForm)
CheckListBox1: TCheckListBox;
Label1: TLabel;
Image1: TImage;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Exampletrainerstyle1: TExampletrainerstyle1;
implementation
{$R *.DFM}
end.