Package net.mcft.copy.betterstorage.tile.entity

Examples of net.mcft.copy.betterstorage.tile.entity.TileEntityLocker


  @SideOnly(Side.CLIENT)
  public int getRenderType() { return ClientProxy.reinforcedLockerRenderId; }
 
  @Override
  public boolean isSideSolid(IBlockAccess world, int x, int y, int z, ForgeDirection side) {
    TileEntityLocker locker = WorldUtils.get(world, x, y, z, TileEntityLocker.class);
    return ((locker == null) || (locker.getOrientation() != side));
  }
View Full Code Here


  @SideOnly(Side.CLIENT)
  public int getRenderType() { return ClientProxy.lockerRenderId; }
 
  @Override
  public boolean isSideSolid(IBlockAccess world, int x, int y, int z, ForgeDirection side) {
    TileEntityLocker locker = WorldUtils.get(world, x, y, z, TileEntityLocker.class);
    return ((locker == null) || (locker.getOrientation() != side));
  }
View Full Code Here

    setBlockBounds(minX, minY, minZ, maxX, maxY, maxZ);
  }
 
  @Override
  public TileEntity createTileEntity(World world, int metadata) {
    return new TileEntityLocker();
  }
View Full Code Here

TOP

Related Classes of net.mcft.copy.betterstorage.tile.entity.TileEntityLocker

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.