cheat-engine/FormFindPointerUnit.pas

27 lines
412 B
ObjectPascal
Raw Permalink Normal View History

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