mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-06-01 09:17:16 -04:00
21 lines
241 B
C
21 lines
241 B
C
#ifndef AC_WEATHER_H
|
|
#define AC_WEATHER_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int aWeather_ChangingWeather();
|
|
|
|
extern ACTOR_PROFILE Weather_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|