mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
37 lines
653 B
ObjectPascal
Executable file
37 lines
653 B
ObjectPascal
Executable file
unit FormDebugStringsUnit;
|
|
|
|
{$MODE Delphi}
|
|
|
|
interface
|
|
|
|
uses
|
|
LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, ExtCtrls, LResources, betterControls;
|
|
|
|
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
|
|
|
|
|
|
procedure TFormDebugStrings.Button1Click(Sender: TObject);
|
|
begin
|
|
close;
|
|
end;
|
|
|
|
initialization
|
|
{$i FormDebugStringsUnit.lrs}
|
|
|
|
end.
|