ASMR/src/main/kotlin/net/shadowfacts/cacao/util/MouseButton.kt

18 lines
263 B
Kotlin
Raw Normal View History

2019-06-23 15:41:32 +00:00
package net.shadowfacts.cacao.util
/**
* @author shadowfacts
*/
enum class MouseButton {
LEFT, RIGHT, MIDDLE;
companion object {
fun fromMC(button: Int): MouseButton {
return when (button) {
1 -> RIGHT
2 -> MIDDLE
else -> LEFT
}
}
}
}