Package appeng.core.features

Examples of appeng.core.features.IAEFeature


        }
      }

      if ( obj instanceof IAEFeature )
      {
        IAEFeature feature = (IAEFeature) obj;

        for (AEFeature f : feature.feature().getFeatures())
          featuresToEntities.put( f, c );

        feature.feature().register();

        feature.postInit();

        return feature.feature();
      }
      else if ( obj == null )
        throw new RuntimeException( "No valid constructor found." );
      else
        throw new RuntimeException( "Non AE Feature Registered" );
View Full Code Here

TOP

Related Classes of appeng.core.features.IAEFeature

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.