Add Breezy Weather integration
This commit is contained in:
@@ -1,25 +1,25 @@
|
||||
package de.mm20.launcher2.weather
|
||||
|
||||
enum class WeatherIcon {
|
||||
Unknown,
|
||||
Clear,
|
||||
Cloudy,
|
||||
Cold,
|
||||
Drizzle,
|
||||
Haze,
|
||||
Fog,
|
||||
Hail,
|
||||
HeavyThunderstorm,
|
||||
HeavyThunderstormWithRain,
|
||||
Hot,
|
||||
MostlyCloudy,
|
||||
PartlyCloudy,
|
||||
Showers,
|
||||
Sleet,
|
||||
Snow,
|
||||
Storm,
|
||||
Thunderstorm,
|
||||
ThunderstormWithRain,
|
||||
Wind,
|
||||
BrokenClouds,
|
||||
enum class WeatherIcon(val id: Int) {
|
||||
Unknown(-1),
|
||||
Clear(0),
|
||||
Cloudy(1),
|
||||
Cold(2),
|
||||
Drizzle(3),
|
||||
Haze(4),
|
||||
Fog(5),
|
||||
Hail(6),
|
||||
HeavyThunderstorm(7),
|
||||
HeavyThunderstormWithRain(8),
|
||||
Hot(9),
|
||||
MostlyCloudy(10),
|
||||
PartlyCloudy(11),
|
||||
Showers(12),
|
||||
Sleet(13),
|
||||
Snow(14),
|
||||
Storm(15),
|
||||
Thunderstorm(16),
|
||||
ThunderstormWithRain(17),
|
||||
Wind(18),
|
||||
BrokenClouds(19),
|
||||
}
|
||||
Reference in New Issue
Block a user