13 lines
448 B
Kotlin
13 lines
448 B
Kotlin
package fr.username404.snowygui
|
|
|
|
import fr.username404.snowygui.gui.ClickBox
|
|
import fr.username404.snowygui.gui.Element
|
|
import fr.username404.snowygui.gui.SnowyScreen
|
|
import net.minecraft.network.chat.TranslatableComponent
|
|
|
|
class ClickGui: SnowyScreen() {
|
|
override val components: MutableSet<Element> = mutableSetOf(
|
|
ClickBox(4.0, 4.0, TranslatableComponent("snowy.clickbox.misc"))
|
|
// TODO Add components to the ClickGui
|
|
)
|
|
} |