Package colonies.src

Examples of colonies.src.ContainerResearchBlock


  {
        TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
        if(tileEntity instanceof TileEntityColoniesChest){
                return new ContainerColoniesChest(player.inventory, (TileEntityColoniesChest) tileEntity);
        } else if(tileEntity instanceof TileEntityResearchBlock){
              return new ContainerResearchBlock(player.inventory, (TileEntityResearchBlock) tileEntity);
      }
        return null;
  }
View Full Code Here

TOP

Related Classes of colonies.src.ContainerResearchBlock

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.