From 24ff70e21e7d9925f48da1ab5ec01df98b33da5e Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Thu, 22 Oct 2020 19:09:07 -0500 Subject: start some basic constants for dungeon data --- include/constants/weather.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/constants/weather.h (limited to 'include/constants/weather.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 -- cgit v1.2.3