ACE3/addons/main/script_mod.hpp

16 lines
406 B
C++
Raw Normal View History

// COMPONENT should be defined in the script_component.hpp and included BEFORE this hpp
#define MAINPREFIX z
#define PREFIX ace
#define MAJOR 3
2015-09-08 17:38:52 +00:00
#define MINOR 3
2015-09-21 20:31:01 +00:00
#define PATCHLVL 2
#define BUILD 0
#define VERSION MAJOR.MINOR.PATCHLVL.BUILD
#define VERSION_AR MAJOR,MINOR,PATCHLVL,BUILD
// MINIMAL required version for the Mod. Components can specify others..
2015-10-30 20:59:46 +00:00
#define REQUIRED_VERSION 1.52