2016-06-01 11:49:10 +00:00
|
|
|
// COMPONENT should be defined in the script_component.hpp and included BEFORE this hpp
|
|
|
|
|
|
|
|
#define MAINPREFIX z
|
|
|
|
#define PREFIX ace
|
|
|
|
|
2016-10-25 18:11:05 +00:00
|
|
|
#include "script_version.hpp"
|
2016-06-01 11:49:10 +00:00
|
|
|
|
2019-09-10 15:49:07 +00:00
|
|
|
#define VERSION MAJOR.MINOR
|
|
|
|
#define VERSION_STR MAJOR.MINOR.PATCHLVL.BUILD
|
|
|
|
#define VERSION_AR MAJOR,MINOR,PATCHLVL,BUILD
|
2016-06-01 11:49:10 +00:00
|
|
|
|
|
|
|
// MINIMAL required version for the Mod. Components can specify others..
|
2020-10-30 18:29:13 +00:00
|
|
|
#define REQUIRED_VERSION 2.00
|
2020-04-07 15:48:32 +00:00
|
|
|
#define REQUIRED_CBA_VERSION {3,15,0}
|
2016-06-19 07:12:25 +00:00
|
|
|
|
2016-06-20 09:41:17 +00:00
|
|
|
#ifdef COMPONENT_BEAUTIFIED
|
|
|
|
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT_BEAUTIFIED)
|
|
|
|
#else
|
|
|
|
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT)
|
|
|
|
#endif
|