pokeheartgold/include/diamond_dust.h
Adrienn Tindall ddbfe2f9f9 Decompile unk_02055418.s
Time functions, daily resets, and apricorn tree functions; merging master into my repo
2022-03-21 00:19:03 -05:00

31 lines
562 B
C

#ifndef POKEHEARTGOLD_DIAMOND_DUST_H
#define POKEHEARTGOLD_DIAMOND_DUST_H
#include "save.h"
#include "sav_system_info.h"
#include "script.h"
#define JANUARY 1
#define FEBRUARY 2
#define MARCH 3
#define APRIL 4
#define MAY 5
#define JUNE 6
#define JULY 7
#define AUGUST 8
#define SEPTEMBER 9
#define OCTOBER 10
#define NOVEMBER 11
#define DECEMBER 12
#define MAP_WEATHER_DIAMOND_DUST 8
typedef struct MonthDay {
u8 month;
u8 day;
} MonthDay;
u32 Fsys_GetWeather_HandleDiamondDust(FieldSystem* fsys, u32 mapId);
#endif //POKEHEARTGOLD_DIAMOND_DUST_H