cheat-engine/Cheat Engine/formPointerOrPointeeUnit.pas

35 lines
578 B
ObjectPascal

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