diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-10-22 19:09:07 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-10-22 19:09:07 -0500 |
commit | 24ff70e21e7d9925f48da1ab5ec01df98b33da5e (patch) | |
tree | d78ad004ef33fc297d619a9d6fd95c6636ff54a3 /include | |
parent | 2613adee4f3045eda4b2e0e9fadb7cc4bc38d4f9 (diff) |
start some basic constants for dungeon data
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/bg_music.h | 6 | ||||
-rw-r--r-- | include/constants/weather.h | 14 |
2 files changed, 20 insertions, 0 deletions
diff --git a/include/constants/bg_music.h b/include/constants/bg_music.h new file mode 100644 index 0000000..0e6f416 --- /dev/null +++ b/include/constants/bg_music.h @@ -0,0 +1,6 @@ +#ifndef GUARD_BG_MUSIC_H +#define GUARD_BG_MUSIC_H + +#define MUS_TINY_WOODS 1 + +#endif //GUARD_BG_MUSIC_H diff --git a/include/constants/weather.h b/include/constants/weather.h new file mode 100644 index 0000000..e7225b9 --- /dev/null +++ b/include/constants/weather.h @@ -0,0 +1,14 @@ +#ifndef GUARD_CONSTANTS_WEATHER_H +#define GUARD_CONSTANTS_WEATHER_H + +#define WEATHER_CLEAR 0 +#define WEATHER_SUNNY 1 +#define WEATHER_SANDSTORM 2 +#define WEATHER_CLOUDY` 3 +#define WEATHER_RAIN 4 +#define WEATHER_HAIL 5 +#define WEATHER_FOG 6 +#define WEATHER_SNOW 7 +#define WEATHER_RANDOM 8 + +#endif // GUARD_CONSTANTS_WEATHER_H |