mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
33602df517
* vector IV updates * vector IV updates * compat cba optics and vector scripts * hide periphery * reticle texture for 7x magnification * vector display config * idc macros, fix illum mode * add radblur effect when using optic * hide zeroing control * delete a broken config entry * fix horizontal and vertical distance mode * set REQUIRED_CBA_VERSION to 3.11.2
20 lines
547 B
C++
20 lines
547 B
C++
// COMPONENT should be defined in the script_component.hpp and included BEFORE this hpp
|
|
|
|
#define MAINPREFIX z
|
|
#define PREFIX ace
|
|
|
|
#include "script_version.hpp"
|
|
|
|
#define VERSION MAJOR.MINOR.PATCHLVL.BUILD
|
|
#define VERSION_AR MAJOR,MINOR,PATCHLVL,BUILD
|
|
|
|
// MINIMAL required version for the Mod. Components can specify others..
|
|
#define REQUIRED_VERSION 1.88
|
|
#define REQUIRED_CBA_VERSION {3,11,2}
|
|
|
|
#ifdef COMPONENT_BEAUTIFIED
|
|
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT_BEAUTIFIED)
|
|
#else
|
|
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT)
|
|
#endif
|