summaryrefslogtreecommitdiff
path: root/src/main/kotlin/event/ChatLineAddedEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/event/ChatLineAddedEvent.kt')
-rw-r--r--src/main/kotlin/event/ChatLineAddedEvent.kt7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/kotlin/event/ChatLineAddedEvent.kt b/src/main/kotlin/event/ChatLineAddedEvent.kt
new file mode 100644
index 0000000..0460f83
--- /dev/null
+++ b/src/main/kotlin/event/ChatLineAddedEvent.kt
@@ -0,0 +1,7 @@
+package moe.nea.ultranotifier.event
+
+import net.minecraft.text.Text
+
+class ChatLineAddedEvent(val component: Text) : UltraEvent() {
+ val string = component.string
+}