mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-12-05 14:21:55 +00:00
Use the arrow symbol for a wind direction
This commit is contained in:
parent
01d981038c
commit
bafad75cea
@ -73,14 +73,14 @@ enum class WeatherType(val label: String, val dayIconKey: IconKey, val nightIcon
|
|||||||
* Enum representing wind directions.
|
* Enum representing wind directions.
|
||||||
*/
|
*/
|
||||||
enum class WindDirection(val label: String) {
|
enum class WindDirection(val label: String) {
|
||||||
NORTH("N"),
|
NORTH("↑"),
|
||||||
NORTH_EAST("NE"),
|
NORTH_EAST("↗"),
|
||||||
EAST("E"),
|
EAST("→"),
|
||||||
SOUTH_EAST("SE"),
|
SOUTH_EAST("↘"),
|
||||||
SOUTH("S"),
|
SOUTH("↓"),
|
||||||
SOUTH_WEST("SW"),
|
SOUTH_WEST("↙"),
|
||||||
WEST("W"),
|
WEST("←"),
|
||||||
NORTH_WEST("NW");
|
NORTH_WEST("↖");
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun random(): WindDirection = entries.toTypedArray().random()
|
fun random(): WindDirection = entries.toTypedArray().random()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user