Package appeng.core.features

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


    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

    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

    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

    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

    return feature;
  }

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

    setTileProvider( hasBlockTileEntity() );
  }

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

TOP

Related Classes of appeng.core.features.AEFeatureHandler

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.