this.buttonList.add(new GuiButton(0, posX + 5, posY + 17, 40, 20, "- 2048"));
this.buttonList.add(new GuiButton(1, posX + 130, posY + 17, 40, 20, "+ 2048"));
this.buttonList.add(new GuiButton(2, posX + 5, posY + 47, 40, 20, "- 1"));
this.buttonList.add(new GuiButton(3, posX + 130, posY + 47, 40, 20, "+ 1"));
textfield_size = new GuiTextField(fontRenderer, posX + 40, posY + 20, 90, 15);
textfield_size.setFocused(false);
textfield_size.setMaxStringLength(12);
textfield_types = new GuiTextField(fontRenderer, posX + 40, posY + 50, 90, 15);
textfield_types.setFocused(false);
textfield_types.setMaxStringLength(2);
}
}