mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
560 B
Plaintext
27 lines
560 B
Plaintext
//#define DEBUG_MODE_FULL
|
|
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(calculateAirDensity);
|
|
PREP(calculateBarometricPressure);
|
|
PREP(calculateRoughnessLength);
|
|
PREP(calculateTemperatureAtHeight);
|
|
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;
|