2015-01-23 22:40:39 +00:00
|
|
|
#define COMPONENT vehiclelock
|
2016-06-20 09:41:17 +00:00
|
|
|
#define COMPONENT_BEAUTIFIED Vehicle Lock
|
2016-01-29 05:26:02 +00:00
|
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
2015-01-23 22:40:39 +00:00
|
|
|
|
2015-03-24 09:01:20 +00:00
|
|
|
// #define DEBUG_MODE_FULL
|
2016-01-29 05:26:02 +00:00
|
|
|
// #define DISABLE_COMPILE_CACHE
|
|
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
2015-01-23 22:40:39 +00:00
|
|
|
|
|
|
|
#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"
|
2018-10-21 21:37:16 +00:00
|
|
|
|
|
|
|
#define IS_KIND_OF_ANY(object,classnames) ((classnames) findIf {(object) isKindOf _x} > -1)
|