Package appeng.tile.misc

Examples of appeng.tile.misc.TileLightDetector


  @Override
  public void onNeighborChange(IBlockAccess world, int x, int y, int z, int tileX, int tileY, int tileZ)
  {
    super.onNeighborChange( world, x, y, z, tileX, tileY, tileZ );

    TileLightDetector tld = getTileEntity( world, x, y, z );
    if ( tld != null )
      tld.updateLight();
  }
View Full Code Here

TOP

Related Classes of appeng.tile.misc.TileLightDetector

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.