mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-09-20 12:46:07 +08:00
14 lines
169 B
ObjectPascal
14 lines
169 B
ObjectPascal
![]() |
program samp;
|
||
|
|
||
|
uses
|
||
|
Forms,
|
||
|
Main in 'Main.pas' {Form1};
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|