cheat-engine/Cheat Engine/formPointerOrPointeeUnit.pas
2020-12-10 23:39:40 +01:00

35 lines
628 B
ObjectPascal
Executable file

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