Examples of IPart


Examples of appeng.api.parts.IPart

  {
    int light = 0;

    for (ForgeDirection d : ForgeDirection.values())
    {
      IPart p = getPart( d );
      if ( p != null )
        light = Math.max( p.getLightLevel(), light );
    }

    if ( light > 0 && AppEng.instance.isIntegrationEnabled( IntegrationType.CLApi ) )
      return ((ICLApi) AppEng.instance.getIntegration( IntegrationType.CLApi )).colorLight( getColor(), light );
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.