mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
008602590c
* Fixes: 5729
28 lines
646 B
C++
28 lines
646 B
C++
#define COMPONENT scopes
|
|
#define COMPONENT_BEAUTIFIED Scopes
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
// #define DEBUG_MODE_FULL
|
|
// #define DISABLE_COMPILE_CACHE
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
#define ELEVATION_UP 0
|
|
#define ELEVATION_DOWN 1
|
|
#define WINDAGE_LEFT 2
|
|
#define WINDAGE_RIGHT 3
|
|
|
|
#define MINOR_INCREMENT false
|
|
#define MAJOR_INCREMENT true
|
|
|
|
#ifdef DEBUG_ENABLED_SCOPES
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_SETTINGS_SCOPES
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_SCOPES
|
|
#endif
|
|
|
|
#define MRAD_TO_DEG(d) ((d) / 17.45329252) // Conversion factor: 9 / (50 * PI)
|
|
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|