Examples of GuiGunBox


Examples of com.flansmod.client.gui.GuiGunBox

    
   @SideOnly(Side.CLIENT)
   public static void openGunBoxGui(EntityPlayer player, GunBoxType type)
   {
     EntityPlayerMP playerMP = FMLClientHandler.instance().getServer().getConfigurationManager().func_152612_a(player.getCommandSenderName());
     FMLClientHandler.instance().displayGuiScreen(player, new GuiGunBox(playerMP.inventory, type));
   }
View Full Code Here

Examples of com.flansmod.client.gui.GuiGunBox

    switch(ID)
    {
    case 0: return new GuiDriveableCrafting(player.inventory, world, x, y, z);
    case 1: return new GuiDriveableRepair(player);
    case 2: return new GuiGunModTable(player.inventory, world);
    case 5: return new GuiGunBox(player.inventory, ((BlockGunBox)world.getBlock(x, y, z)).type);
    case 6: return new GuiDriveableInventory(player.inventory, world, ((EntitySeat)player.ridingEntity).driveable, 0);
    case 7: return new GuiDriveableInventory(player.inventory, world, ((EntitySeat)player.ridingEntity).driveable, 1);
    case 8: return new GuiDriveableFuel    (player.inventory, world, ((EntitySeat)player.ridingEntity).driveable);
    case 9: return new GuiDriveableInventory(player.inventory, world, ((EntitySeat)player.ridingEntity).driveable, 2);
    case 10: return new GuiMechaInventory  (player.inventory, world, (EntityMecha)((EntitySeat)player.ridingEntity).driveable);
View Full Code Here
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.