Shipwright/soh/src/overlays/actors/ovl_En_Weather_Tag/z_en_weather_tag.h
M4xw 39cc86c260 git subrepo clone https://github.com/HarbourMasters/soh.git
subrepo:
  subdir:   "soh"
  merged:   "ba904bbd0"
upstream:
  origin:   "https://github.com/HarbourMasters/soh.git"
  branch:   "master"
  commit:   "ba904bbd0"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
2022-03-22 02:51:23 +01:00

29 lines
867 B
C

#ifndef Z_EN_WEATHER_TAG_H
#define Z_EN_WEATHER_TAG_H
#include "ultra64.h"
#include "global.h"
struct EnWeatherTag;
typedef void (*EnWeatherTagActionFunc)(struct EnWeatherTag*, GlobalContext*);
typedef struct EnWeatherTag {
/* 0x0000 */ Actor actor;
/* 0x014C */ EnWeatherTagActionFunc actionFunc;
/* 0x0150 */ char unk_150[0x04];
} EnWeatherTag; // size = 0x0154
typedef enum {
/* 0x00 */ EN_WEATHER_TAG_TYPE_CLOUDY_MARKET,
/* 0x01 */ EN_WEATHER_TAG_TYPE_CLOUDY_LON_LON_RANCH,
/* 0x02 */ EN_WEATHER_TAG_TYPE_SNOW_ZORAS_DOMAIN,
/* 0x03 */ EN_WEATHER_TAG_TYPE_RAIN_LAKE_HYLIA,
/* 0x04 */ EN_WEATHER_TAG_TYPE_CLOUDY_DEATH_MOUNTAIN,
/* 0x05 */ EN_WEATHER_TAG_TYPE_THUNDERSTORM_KAKARIKO,
/* 0x06 */ EN_WEATHER_TAG_TYPE_SANDSTORM_INTENSITY,
/* 0x07 */ EN_WEATHER_TAG_TYPE_THUNDERSTORM_GRAVEYARD
} EnWeatherTagType;
#endif