mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
26 lines
412 B
ObjectPascal
26 lines
412 B
ObjectPascal
unit FormFindPointerUnit;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls;
|
|
|
|
type
|
|
TFormFindPointer = class(TForm)
|
|
ListBox1: TListBox;
|
|
Button1: TButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
FormFindPointer: TFormFindPointer;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|