1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
program CevoMapGen;
{***********************************************************
Project: C-evo External Map Generator
Copyright: 1999-2023 P Blackman
License: GPLv3+
Project file for CevoMapGen
***********************************************************}
uses
Forms, Interfaces,
CevoMapMain IN 'CevoMapMain.pas',
ImageForm IN 'ImageForm.pas',
LazLogger, LCLExceptionStackTrace;
{$R *.res}
{$hints off}
begin
Application.Initialize;
Application.Title := 'cevomapgen';
Application.CreateForm(TFrmInterface, FrmInterface);
Application.CreateForm(TFrmImage, FrmImage);
// Load Map file if specified on command line
FrmInterface.CheckifLoadNeeded;
Application.Run;
end.
|