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

27 lines
451 B
ObjectPascal

unit formPointerOrPointeeUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TformPointerOrPointee = class(TForm)
Label1: TLabel;
Button1: TButton;
Button2: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
formPointerOrPointee: TformPointerOrPointee;
implementation
{$R *.dfm}
end.