Examples of AEFeatureHandler


Examples of appeng.core.features.AEFeatureHandler

    return Platform.canRepair( type, a, b );
  }

  public ToolQuartzHoe(AEFeature Type) {
    super( ToolMaterial.IRON );
    feature = new AEFeatureHandler( EnumSet.of( type = Type, AEFeature.QuartzHoe ), this, Type.name() );
  }
View Full Code Here

Examples of appeng.core.features.AEFeatureHandler

    return Platform.canRepair( type, a, b );
  }

  public ToolQuartzPickaxe(AEFeature Type) {
    super( ToolMaterial.IRON );
    feature = new AEFeatureHandler( EnumSet.of( type = Type, AEFeature.QuartzPickaxe ), this, Type.name() );
  }
View Full Code Here

Examples of appeng.core.features.AEFeatureHandler

    return Platform.canRepair( type, a, b );
  }

  public ToolQuartzSword(AEFeature Type) {
    super( ToolMaterial.IRON );
    feature = new AEFeatureHandler( EnumSet.of( type = Type, AEFeature.QuartzSword ), this, Type.name() );
  }
View Full Code Here

Examples of appeng.core.features.AEFeatureHandler

    return Platform.canRepair( type, a, b );
  }

  public ToolQuartzAxe(AEFeature Type) {
    super( ToolMaterial.IRON );
    feature = new AEFeatureHandler( EnumSet.of( type = Type, AEFeature.QuartzAxe ), this, Type.name() );
  }
View Full Code Here

Examples of appeng.core.features.AEFeatureHandler

    return Platform.canRepair( type, a, b );
  }

  public ToolQuartzSpade(AEFeature Type) {
    super( ToolMaterial.IRON );
    feature = new AEFeatureHandler( EnumSet.of( type = Type, AEFeature.QuartzSpade ), this, Type.name() );
  }
View Full Code Here

Examples of appeng.core.features.AEFeatureHandler

    return feature;
  }

  public void setFeature(EnumSet<AEFeature> f)
  {
    feature = new AEFeatureHandler( f, this, featureSubName );
  }
View Full Code Here

Examples of appeng.core.features.AEFeatureHandler

    setTileProvider( hasBlockTileEntity() );
  }

  protected void setFeature(EnumSet<AEFeature> f)
  {
    feature = new AEFeatureHandler( f, this, featureSubName );
  }
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.