File: Global.pas

package info (click to toggle)
c-evo-dh 3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,540 kB
  • sloc: pascal: 57,645; xml: 243; makefile: 114; sh: 4
file content (29 lines) | stat: -rw-r--r-- 866 bytes parent folder | download
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
unit Global;

interface

const
  CevoExt = '.cevo';
  CevoMapExt = '.cevomap';
  CevoMapPictureExt = '.png';
  CevoTribeExt = '.tribe.txt';
  CevoHomepageShort = 'sourceforge.net/projects/c-evo-eh';
  CevoHomepage = 'https://' + CevoHomepageShort;
  CevoContactShort = 'sourceforge.net/projects/c-evo-eh/support';
  CevoContact = 'https://' + CevoContactShort;
  CevoContactBug = 'https://sourceforge.net/projects/c-evo-eh/support';
  CevoNetworkPort = 41363;
  AppRegistryKey = '\SOFTWARE\C-evo';
  AITemplateManual = 'AI development manual';
  AITemplateFileName = 'AI Template' + DirectorySeparator + AITemplateManual + '.html';
  CevoVersionMajor = 3;
  CevoVersionMinor = 0;
  CevoVersionBugFix = 0;
  CevoVersion = ((CevoVersionMajor and $ff) shl 16) or
    ((CevoVersionMinor and $ff) shl 8) or
    ((CevoVersionBugFix and $ff) shl 0);

implementation

end.