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

18 lines
263 B
Kotlin

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
}
}
}
}