Package forestry.api.farming

Examples of forestry.api.farming.IFarmable


    Set<Vect> seen = new HashSet<Vect>();
    Stack<ICrop> crops = new Stack<ICrop>();

    // Determine what type we want to harvest.
    IFarmable germling = null;
    for (IFarmable germl : germlings) {
      ICrop crop = germl.getCropAt(world, position.x, position.y, position.z);
      if (crop == null)
        continue;
View Full Code Here

TOP

Related Classes of forestry.api.farming.IFarmable

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.