Package net.minecraft.client.gui

Examples of net.minecraft.client.gui.GuiChat


    {
      //mc.thePlayer.dropCurrentItem();
    }
    if(i == mc.gameSettings.keyBindChat.getKeyCode())
    {
      mc.displayGuiScreen(new GuiChat());
    }
    if(i == mc.gameSettings.keyBindCommand.getKeyCode())
    {
      mc.displayGuiScreen(new GuiChat("/"));
    }
    if(i == KeyInputHandler.debugKey.getKeyCode())
    {
      FlansMod.DEBUG = !FlansMod.DEBUG;
    }
View Full Code Here


  public void readData(LPDataInputStream data) throws IOException {}
 
  @Override
  @ClientSideOnlyMethodContent
  public void processPacket(EntityPlayer player) {
    FMLClientHandler.instance().getClient().displayGuiScreen(new GuiChat());
  }
View Full Code Here

TOP

Related Classes of net.minecraft.client.gui.GuiChat

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.