amxmodx/installer/installer/AMXInstaller.dpr

36 lines
951 B
ObjectPascal
Raw Normal View History

2005-07-21 23:08:23 +00:00
program AMXInstaller;
{ AMXX Installer for AMX Mod X 1.5
2005-07-21 23:08:23 +00:00
by the AMXX Development Team
Used components:
- Indy 9 (www.indyproject.org)
- FlatStyle Components (www.torry.net)
- FlatPack Component Pack (www.torry.net)
- JVCL Lib Pack 3.0 (jvcl.sourceforge.net)
AMXX Installer for AMX Mod X 1.5 is developed under GNU Public License
2005-07-21 23:08:23 +00:00
and comes WITH ABSOLUTELY NO WARRANTY!
}
uses
Forms,
UnitfrmMain in 'UnitfrmMain.pas' {frmMain},
UnitFunctions in 'UnitFunctions.pas',
UnitScanMods in 'UnitScanMods.pas',
UnitfrmProxy in 'UnitfrmProxy.pas' {frmProxy},
UnitInstall in 'UnitInstall.pas',
UnitSelectModPath in 'UnitSelectModPath.pas' {frmSelectModPath};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'AMX Mod X Installer';
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmProxy, frmProxy);
Application.CreateForm(TfrmSelectModPath, frmSelectModPath);
Application.Run;
end.