Package org.spout.vanilla.inventory.window.block.chest

Examples of org.spout.vanilla.inventory.window.block.chest.EnderChestWindow


* Component that represents a Ender Chest in the world.
*/
public class EnderChest extends AbstractChest {
  @Override
  public boolean open(Player player) {
    player.get(WindowHolder.class).openWindow(new EnderChestWindow(player, this, player.get(PlayerInventory.class).getEnderChestInventory()));
    return super.open(player);
  }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.inventory.window.block.chest.EnderChestWindow

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.