package net.shadowfacts.phycon.api; import net.minecraft.text.Text; import net.minecraft.util.Identifier; import org.jetbrains.annotations.Nullable; /** * @author shadowfacts */ public interface TerminalSetting { Identifier getIconTexture(); int[] getUV(); @Nullable Text getTooltip(); }