Package powercrystals.minefactoryreloaded.core

Examples of powercrystals.minefactoryreloaded.core.HarvestAreaManager


 
  public TileEntityFertilizer()
  {
    super(Machine.Fertilizer);
    _rand = new Random();
    _areaManager = new HarvestAreaManager(this, 1, 0, 0);
  }
View Full Code Here


  protected GrindingDamage _damageSource;
 
  protected TileEntityGrinder(Machine machine)
  {
    super(machine);
    _areaManager = new HarvestAreaManager(this, 2, 2, 1);
    _tank = new LiquidTank(4 * LiquidContainerRegistry.BUCKET_VOLUME);
    _rand = new Random();
  }
View Full Code Here

TOP

Related Classes of powercrystals.minefactoryreloaded.core.HarvestAreaManager

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.