initial commit to split repos
This commit is contained in:
20
mvc/enums/weatherstatus.h
Normal file
20
mvc/enums/weatherstatus.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user