File: CevoMapGen.lpr

package info (click to toggle)
cevomapgen 39-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 476 kB
  • sloc: pascal: 2,765; xml: 169; makefile: 50
file content (33 lines) | stat: -rw-r--r-- 727 bytes parent folder | download | duplicates (2)
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.