mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-16 04:53:12 +01:00
32 lines
1 KiB
Java
32 lines
1 KiB
Java
/*
|
|
* This file ("PageText.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015 Ellpeck
|
|
*/
|
|
|
|
package ellpeck.actuallyadditions.booklet.page;
|
|
|
|
import ellpeck.actuallyadditions.booklet.GuiBooklet;
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
import ellpeck.actuallyadditions.util.StringUtil;
|
|
|
|
public class PageText extends BookletPage{
|
|
|
|
public PageText(int id){
|
|
super(id);
|
|
}
|
|
|
|
@Override
|
|
public String getText(){
|
|
return StringUtil.localize("booklet."+ModUtil.MOD_ID_LOWER+".chapter."+this.chapter.getUnlocalizedName()+".text."+this.id);
|
|
}
|
|
|
|
@Override
|
|
public void render(GuiBooklet gui, int mouseX, int mouseY){
|
|
gui.unicodeRenderer.drawSplitString(gui.currentPage.getText(), gui.guiLeft+14, gui.guiTop+11, 115, 0);
|
|
}
|
|
}
|