2023-11-05 22:32:43 +08:00
|
|
|
program samp;
|
|
|
|
|
|
|
|
uses
|
|
|
|
Forms,
|
2023-11-07 23:44:02 +08:00
|
|
|
Main in 'Main.pas' {fmMain},
|
|
|
|
About in 'About.pas' {fmAbout},
|
|
|
|
ExportFavorites in 'ExportFavorites.pas' {fmExportFavorites},
|
|
|
|
ImportFavorites in 'ImportFavorites.pas' {fmImportFavorites},
|
|
|
|
MasterUpdate in 'MasterUpdate.pas' {fmMasterUpdate},
|
|
|
|
RconConfig in 'RconConfig.pas' {fmRconConfig},
|
|
|
|
ServerProperties in 'ServerProperties.pas' {fmServerProperties},
|
|
|
|
Settings in 'Settings.pas' {fmSettings},
|
2023-11-07 23:47:38 +08:00
|
|
|
Rcon in 'Rcon.pas' {fmRcon},
|
|
|
|
unit_webrunform in 'unit_webrunform.pas' {wnd_webrunform};
|
2023-11-05 22:32:43 +08:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
2023-12-06 22:58:00 +08:00
|
|
|
Application.Title := 'SA-MP 0.3';
|
2023-11-07 23:44:02 +08:00
|
|
|
Application.CreateForm(TfmMain, fmMain);
|
|
|
|
Application.CreateForm(TfmAbout, fmAbout);
|
|
|
|
Application.CreateForm(TfmExportFavorites, fmExportFavorites);
|
|
|
|
Application.CreateForm(TfmImportFavorites, fmImportFavorites);
|
|
|
|
Application.CreateForm(TfmMasterUpdate, fmMasterUpdate);
|
|
|
|
Application.CreateForm(TfmRconConfig, fmRconConfig);
|
|
|
|
Application.CreateForm(TfmServerProperties, fmServerProperties);
|
|
|
|
Application.CreateForm(TfmSettings, fmSettings);
|
|
|
|
Application.CreateForm(TfmRcon, fmRcon);
|
|
|
|
Application.CreateForm(Twnd_webrunform, wnd_webrunform);
|
2023-11-05 22:32:43 +08:00
|
|
|
Application.Run;
|
|
|
|
end.
|