summaryrefslogtreecommitdiff
path: root/src/main/kotlin/event/VisibleChatMessageAddedEvent.kt
blob: 97d919b750b7f27f2c6b626eba8f07117d212e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package moe.nea.ultranotifier.event

import net.minecraft.client.gui.hud.ChatHudLine
import net.minecraft.text.Text

typealias ChattyHudLine =
	ChatHudLine
//#if MC < 1.20
//#if MC > 1.16
//$$	<Text>
//#endif
//#endif


data class VisibleChatMessageAddedEvent(
	val chatLine: ChattyHudLine,
) : UltraEvent()