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.
|