mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
74984769a5
* Tagging - Add custom stencil text tags * hack to force preloading font * Add 3den * header * Apply suggestions from code review Co-authored-by: jonpas <jonpas33@gmail.com> * Update addons/tagging/functions/fnc_generateStencilTexture.sqf --------- Co-authored-by: jonpas <jonpas33@gmail.com> Co-authored-by: Salluci <salluci.lovi@gmail.com>
21 lines
584 B
C++
21 lines
584 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
|
|
#define VERSION_STR MAJOR.MINOR.PATCHLVL.BUILD
|
|
#define VERSION_AR MAJOR,MINOR,PATCHLVL,BUILD
|
|
|
|
// MINIMAL required version for the Mod. Components can specify others..
|
|
#define REQUIRED_VERSION 2.12
|
|
#define REQUIRED_CBA_VERSION {3,15,7}
|
|
|
|
#ifdef COMPONENT_BEAUTIFIED
|
|
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT_BEAUTIFIED)
|
|
#else
|
|
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT)
|
|
#endif
|