mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
565 B
C++
24 lines
565 B
C++
#define COMPONENT missileguidance
|
|
#define COMPONENT_BEAUTIFIED Missile Guidance
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
// #define DRAW_GUIDANCE_INFO
|
|
// #define DEBUG_MODE_FULL
|
|
// #define DISABLE_COMPILE_CACHE
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
#ifdef DEBUG_ENABLED_MISSILEGUIDANCE
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_SETTINGS_MISSILEGUIDANCE
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_MISSILEGUIDANCE
|
|
#endif
|
|
|
|
#define MCLOS_UP 0
|
|
#define MCLOS_RIGHT 1
|
|
#define MCLOS_DOWN 2
|
|
#define MCLOS_LEFT 3
|
|
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|