blob: f28a4c2332f3055f99bd8ed4860e197f56ceaa89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "option.h"
#define FF_WEATHER_MODULE_NAME "Weather"
void ffPrepareWeather(FFWeatherOptions* options);
bool ffPrintWeather(FFWeatherOptions* options);
void ffInitWeatherOptions(FFWeatherOptions* options);
void ffDestroyWeatherOptions(FFWeatherOptions* options);
extern FFModuleBaseInfo ffWeatherModuleInfo;
|