aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/utils/ChatComponentUtils.kt
blob: 4a0d8ce76beab6c6a6a822912b02969757481d03 (plain)
1
2
3
4
5
6
7
8
package at.hannibal2.skyhanni.utils

import net.minecraft.util.ChatComponentText

object ChatComponentUtils {
    fun text(text: String, init: ChatComponentText.() -> Unit = {}): ChatComponentText =
        ChatComponentText(text).also(init)
}