mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 21:19:53 +00:00
15 lines
484 B
C
15 lines
484 B
C
#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
|