cheat-engine/Cheat Engine/formPointerOrPointeeUnit.pas
2011-07-04 19:53:51 +00:00

31 lines
514 B
ObjectPascal

unit formPointerOrPointeeUnit;
{$MODE Delphi}
interface
uses
LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, LResources;
type
TformPointerOrPointee = class(TForm)
Label1: TLabel;
Button1: TButton;
Button2: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
formPointerOrPointee: TformPointerOrPointee;
implementation
initialization
{$i formPointerOrPointeeUnit.lrs}
end.