2014-06-30 14:37:42 +00:00
|
|
|
program ChivalryServerLauncher;
|
|
|
|
|
|
|
|
uses
|
|
|
|
Vcl.Forms,
|
|
|
|
Forms.Main in 'source\view\Forms.Main.pas' {MainForm},
|
|
|
|
Game.Base in 'source\model\Game.Base.pas',
|
|
|
|
Game.Chivalry.MedievalWarfare in 'source\model\Game.Chivalry.MedievalWarfare.pas',
|
|
|
|
Game.Intf in 'source\model\Game.Intf.pas',
|
|
|
|
Game.Chivalry in 'source\model\Game.Chivalry.pas',
|
|
|
|
Game.Registry in 'source\model\Game.Registry.pas',
|
|
|
|
Resources in 'source\Resources.pas',
|
|
|
|
Forms.Game in 'source\view\Forms.Game.pas' {GameForm},
|
|
|
|
Bindings.Converters in 'source\bindings\Bindings.Converters.pas',
|
|
|
|
Game.List in 'source\model\Game.List.pas',
|
2014-06-30 21:41:54 +00:00
|
|
|
Persist.GameList in 'source\persist\Persist.GameList.pas',
|
2014-07-01 21:18:07 +00:00
|
|
|
Forms.Map in 'source\view\Forms.Map.pas' {MapForm},
|
|
|
|
Frame.MapPreview in 'source\view\Frame.MapPreview.pas' {MapPreviewFrame: TFrame};
|
2014-06-30 14:37:42 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
|
|
|
|
var
|
|
|
|
MainForm: TMainForm;
|
|
|
|
|
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
Application.MainFormOnTaskbar := True;
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
Application.Run;
|
|
|
|
end.
|