mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
20 lines
322 B
ObjectPascal
Executable file
20 lines
322 B
ObjectPascal
Executable file
program speedhacktest;
|
|
|
|
{$MODE Delphi}
|
|
|
|
uses
|
|
{$ifdef darwin}
|
|
cthreads,
|
|
{$endif}
|
|
Forms, Interfaces,
|
|
Unit1 in 'Unit1.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled:=True;
|
|
Application.Title:='';
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|