Package baubles.common.container

Examples of baubles.common.container.ContainerPlayerExpanded


     */
    private float ySizeFloat;

    public GuiPlayerExpanded(EntityPlayer player)
    {
        super(new ContainerPlayerExpanded(player.inventory, !player.worldObj.isRemote, player));
        this.allowUserInput = true;
    }
View Full Code Here


  }

  @Override
  public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
    switch (ID) {
      case Baubles.GUI: return new ContainerPlayerExpanded(player.inventory, !world.isRemote, player);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of baubles.common.container.ContainerPlayerExpanded

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.