amxmodx/installer/installer/AMXInstaller.dpr
Christian Hammacher 0ef9b80430 the editor unindents now on pressing }. have fun!
- fixed bugs... lalala
- updated debug-list
- fixed comment-bug
- now final edition...

hrm bail decided this will be AMX Mod X 1.5 so updated captions..
-> Basic-Master is now crazy o_><_O
2005-07-24 23:47:45 +00:00

36 lines
951 B
ObjectPascal
Executable File

program AMXInstaller;
{ AMXX Installer for AMX Mod X 1.5
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
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.