source: tags/1.3.1/Global.pas

Last change on this file was 444, checked in by chronos, 2 years ago
  • Modified: Changes related to version 1.3.1.
  • Added: Windows binaries for version 1.3.1.
File size: 831 bytes
Line 
1unit Global;
2
3interface
4
5const
6 CevoExt = '.cevo';
7 CevoMapExt = '.cevomap';
8 CevoMapPictureExt = '.png';
9 CevoTribeExt = '.tribe.txt';
10 CevoHomepageShort = 'app.zdechov.net/c-evo';
11 CevoHomepage = 'https://' + CevoHomepageShort;
12 CevoContactShort = 'app.zdechov.net/c-evo#Support';
13 CevoContact = 'https://' + CevoContactShort;
14 CevoContactBug = 'https://app.zdechov.net/c-evo/report/1';
15 CevoNetworkPort = 41363;
16 AppRegistryKey = '\SOFTWARE\C-evo';
17 AITemplateManual = 'AI development manual';
18 AITemplateFileName = 'AI Template' + DirectorySeparator + AITemplateManual + '.html';
19 CevoVersionMajor = 1;
20 CevoVersionMinor = 3;
21 CevoVersionBugFix = 1;
22 CevoVersion = ((CevoVersionMajor and $ff) shl 16) or
23 ((CevoVersionMinor and $ff) shl 8) or
24 ((CevoVersionBugFix and $ff) shl 0);
25
26implementation
27
28end.
29
Note: See TracBrowser for help on using the repository browser.