blob: 52ec909c02162767b9d442b3c443126b923b9787 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package at.hannibal2.skyhanni.events
import net.minecraft.util.ChatComponentText
import net.minecraft.util.IChatComponent
class ActionBarUpdateEvent(var actionBar: String, var chatComponent: IChatComponent) : LorenzEvent() {
fun changeActionBar(newText: String) {
chatComponent = ChatComponentText(newText)
}
}
|