ACE3/addons/vehiclelock/script_component.hpp
commy2 001942b2ed Vehicle Lock - Enable for planes (#6646)
* enable vehicle lock module for planes

* Add actions to planes

* improved lazy eval

* remove superfluous parent class check

* IS_KIND_OF_ANY macro

* Update addons/vehiclelock/functions/fnc_moduleSync.sqf

* Improve handleVehicleInitPost XEH
2018-10-21 16:37:16 -05:00

20 lines
524 B
C++

#define COMPONENT vehiclelock
#define COMPONENT_BEAUTIFIED Vehicle Lock
#include "\z\ace\addons\main\script_mod.hpp"
// #define DEBUG_MODE_FULL
// #define DISABLE_COMPILE_CACHE
// #define ENABLE_PERFORMANCE_COUNTERS
#ifdef DEBUG_ENABLED_VEHICLELOCK
#define DEBUG_MODE_FULL
#endif
#ifdef DEBUG_SETTINGS_VEHICLELOCK
#define DEBUG_SETTINGS DEBUG_SETTINGS_VEHICLELOCK
#endif
#include "\z\ace\addons\main\script_macros.hpp"
#define IS_KIND_OF_ANY(object,classnames) ((classnames) findIf {(object) isKindOf _x} > -1)