source: trunk/Global.pas

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