public GuiElementDropdown(int id, IDropboxCallback parentClass, int x, int y, String... text)
{
super(id, x, y, 13, 13, "");
Minecraft mc = FMLClientHandler.instance().getClient();
this.parentClass = parentClass;
this.font = new SmallFontRenderer(mc.gameSettings, new ResourceLocation("textures/font/ascii.png"), mc.renderEngine, false);
this.optionStrings = text;
int largestString = Integer.MIN_VALUE;
for (String element : text)