mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-27 15:42:46 -04:00
27 lines
311 B
C
27 lines
311 B
C
#ifndef M_KANKYO_H
|
|
#define M_KANKYO_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum weather {
|
|
mEv_WEATHER_CLEAR,
|
|
mEv_WEATHER_RAIN,
|
|
mEv_WEATHER_SNOW,
|
|
mEv_WEATHER_SAKURA,
|
|
mEv_WEATHER_LEAVES,
|
|
|
|
mEv_WEATHER_NUM
|
|
};
|
|
|
|
extern int mEnv_NowWeather();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|