mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5ff54f7d1c
*Added a new global variable ace_advanced_ballistics_enabled *Added an updateTrajectoryPFH to the winddeflection (WD) module *WD is now automatically disabled when AB is enabled *The new updateTrajectoryPFH is called whenever AB aborts -> Wind deflection is now always present (either through AB or WD) -> AB no longer runs for non local units (unless they use high power optics)
19 lines
414 B
C++
19 lines
414 B
C++
class Extended_PreInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE( call COMPILE_FILE(XEH_preInit) );
|
|
};
|
|
};
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE( call COMPILE_FILE(XEH_postInit) );
|
|
};
|
|
};
|
|
|
|
class Extended_FiredBIS_EventHandlers {
|
|
class CAManBase {
|
|
class ADDON {
|
|
firedBIS = QUOTE(_this call FUNC(handleFired));
|
|
};
|
|
};
|
|
}; |