ACE3/addons/weather/XEH_preInit.sqf
ulteq abf0149b1d Added speed of sound calculation:
* Influences the advanced ballistics transonic instability
* Influences the ATragMX range card output
2015-05-29 11:36:37 +02:00

32 lines
690 B
Plaintext

//#define DEBUG_MODE_FULL
#include "script_component.hpp"
ADDON = false;
PREP(calculateAirDensity);
PREP(calculateBarometricPressure);
PREP(calculateDewPoint);
PREP(calculateHeatIndex);
PREP(calculateRoughnessLength);
PREP(calculateSpeedOfSound);
PREP(calculateTemperatureAtHeight);
PREP(calculateWetBulb);
PREP(calculateWindChill);
PREP(calculateWindSpeed);
PREP(displayWindInfo);
PREP(getMapData);
PREP(getWind);
PREP(initModuleSettings);
PREP(initWind);
PREP(serverController);
PREP(updateAceWeather);
PREP(updateHumidity);
PREP(updateRain);
PREP(updateTemperature);
PREP(updateWind);
// Make sure this data is read before client/server postInit
call FUNC(getMapData);
ADDON = true;