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 = mutableSetOf( ClickBox(4.0, 4.0, TranslatableComponent("snowy.clickbox.misc")) // TODO Add components to the ClickGui ) }