Examples of Materials


Examples of appeng.api.definitions.Materials

    RecipeSorter.register( "AE2-Shapeless", ShapelessRecipe.class, Category.SHAPELESS, "" );

    MinecraftForge.EVENT_BUS.register( OreDictionaryHandler.instance );

    Items items = appeng.core.Api.instance.items();
    Materials materials = appeng.core.Api.instance.materials();
    Parts parts = appeng.core.Api.instance.parts();
    Blocks blocks = appeng.core.Api.instance.blocks();

    AEItemDefinition materialItem = addFeature( ItemMultiMaterial.class );

    Class materialClass = materials.getClass();
    for (MaterialType mat : MaterialType.values())
    {
      try
      {
        if ( mat == MaterialType.InvalidType )
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.