Package appeng.tile

Examples of appeng.tile.AEBaseTile.canBeRotated()


  final public ForgeDirection[] getValidRotations(World w, int x, int y, int z)
  {
    if ( hasBlockTileEntity() )
    {
      AEBaseTile obj = getTileEntity( w, x, y, z );
      if ( obj != null && obj.canBeRotated() )
      {
        return ForgeDirection.VALID_DIRECTIONS;
      }
    }
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.