mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
27 lines
317 B
C
27 lines
317 B
C
#ifndef M_KANKYO_H
|
|
#define M_KANKYO_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum weather {
|
|
mEnv_WEATHER_CLEAR,
|
|
mEnv_WEATHER_RAIN,
|
|
mEnv_WEATHER_SNOW,
|
|
mEnv_WEATHER_SAKURA,
|
|
mEnv_WEATHER_LEAVES,
|
|
|
|
mEnv_WEATHER_NUM
|
|
};
|
|
|
|
extern int mEnv_NowWeather();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|