/* * This file ("GuiBookletBase.java") is part of the Actually Additions mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://ellpeck.de/actaddlicense * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2015-2017 Ellpeck */ package de.ellpeck.actuallyadditions.api.booklet.internal; import java.util.List; import net.minecraft.client.gui.GuiButton; import net.minecraft.client.gui.GuiScreen; import net.minecraft.item.ItemStack; public abstract class GuiBookletBase extends GuiScreen { public abstract void renderScaledAsciiString(String text, int x, int y, int color, boolean shadow, float scale); public abstract void renderSplitScaledAsciiString(String text, int x, int y, int color, boolean shadow, float scale, int length); public abstract List getButtonList(); public abstract int getGuiLeft(); public abstract int getGuiTop(); public abstract int getSizeX(); public abstract int getSizeY(); public abstract void addOrModifyItemRenderer(ItemStack renderedStack, int x, int y, float scale, boolean shouldTryTransfer); public abstract float getSmallFontSize(); public abstract float getMediumFontSize(); public abstract float getLargeFontSize(); }