mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
27 lines
451 B
ObjectPascal
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.
|