mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +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.
|