Blame view
src/main/kotlin/map/ControlPosition.kt
277 Bytes
53f01ecc3
|
1 |
package map |
d06a68ec6
|
2 3 4 5 6 7 8 9 10 11 12 13 14 |
/** * Enumeration for all possible map control positions. * * @author Stefan Saring */ enum class ControlPosition(val positionName: String) { TOP_LEFT("topleft"), TOP_RIGHT("topright"), BOTTOM_LEFT("bottomleft"), BOTTOM_RIGHT("bottomright") } |