21 lines
260 B
C
21 lines
260 B
C
#ifndef WEATHERSTATUS_H
|
|
#define WEATHERSTATUS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
enum WeatherStatus : uint8_t {
|
|
UNKNOWN = 0,
|
|
SUNNY,
|
|
PARTLY_CLOUDY,
|
|
CLOUDY,
|
|
RAINY,
|
|
SNOWING,
|
|
HAILSTORM,
|
|
FROZED_TO_DEAD,
|
|
THUNDERSTORM,
|
|
TSUNAMI
|
|
|
|
};
|
|
|
|
#endif // WEATHERSTATUS_H
|