cheat-engine/FormDebugStringsUnit.pas

34 lines
578 B
ObjectPascal
Raw Permalink Normal View History

2011-07-04 19:52:19 +00:00
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.