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