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

33 lines
578 B
ObjectPascal

unit FormDebugStringsUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
TFormDebugStrings = class(TForm)
ListBox1: TListBox;
Panel1: TPanel;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FormDebugStrings: TFormDebugStrings;
implementation
{$R *.dfm}
procedure TFormDebugStrings.Button1Click(Sender: TObject);
begin
close;
end;
end.