com.lop.devtools.monstera.files.beh.entitiy.components.ComponentSittAble.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of monstera Show documentation
Show all versions of monstera Show documentation
A library and environment designed to streamline the development of Minecraft addons.
package com.lop.devtools.monstera.files.beh.entitiy.components
class ComponentSittAble {
val general = mutableMapOf()
var sitEvent: String? = null
var standEvent: String? = null
fun getData(): MutableMap {
sitEvent?.let { general["sit_event"] = it }
standEvent?.let { general["stand_event"] = it }
return general
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy