mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
416 B
Plaintext
22 lines
416 B
Plaintext
//#define DEBUG_MODE_FULL
|
|
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(calculateAirDensity);
|
|
PREP(calculateBarometricPressure);
|
|
PREP(displayWindInfo);
|
|
PREP(getMapData);
|
|
PREP(getWind);
|
|
PREP(initWind);
|
|
PREP(serverController);
|
|
PREP(updateHumidity);
|
|
PREP(updateRain);
|
|
PREP(updateTemperature);
|
|
PREP(updateWind);
|
|
|
|
// Make sure this data is read before client/server postInit
|
|
call FUNC(getMapData);
|
|
|
|
ADDON = true;
|