Package baubles.common

Source Code of baubles.common.CommonProxy

package baubles.common;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
import baubles.common.container.ContainerPlayerExpanded;
import baubles.common.event.KeyHandler;
import cpw.mods.fml.common.network.IGuiHandler;



public class CommonProxy implements IGuiHandler {
 
  public KeyHandler keyHandler;
 
  public void registerHandlers() {}
 

  @Override
  public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
    return null;
  }

  @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;
  }

  public World getClientWorld() {
    return null;
  }
   
 
  public void registerKeyBindings() {}

}
TOP

Related Classes of baubles.common.CommonProxy

TOP
Copyright © 2018 www.massapi.com. 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.