Package cofh.core.gui

Examples of cofh.core.gui.GuiTextList


    tbName.setText(temp);
    tbName.setEnableBackgroundDrawing(false);

    // Setup Text Area

    taFriendsList = new GuiTextList(this.fontRendererObj, taflX, taflY, 128, 10);
    taFriendsList.textLines = SocialRegistry.clientPlayerFriends;
    taFriendsList.drawBackground = false;
    taFriendsList.drawBorder = false;

    taOnlineList = new GuiTextList(this.fontRendererObj, taX, taY, 128, 4);
    taOnlineList.textLines = getOnlineNames();
    taOnlineList.drawBackground = false;
    taOnlineList.drawBorder = false;

    addName = new ElementButton(this, 139, 13, "SetName", 208, 128, 208, 144, 208, 160, 16, 16, TEXTURE_PATH);
View Full Code Here

TOP

Related Classes of cofh.core.gui.GuiTextList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.