mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
13 lines
174 B
ObjectPascal
13 lines
174 B
ObjectPascal
program ptest;
|
|
|
|
uses
|
|
Forms,
|
|
tester in 'tester.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|