Package org.spout.vanilla.world.generator.normal.object.tree

Examples of org.spout.vanilla.world.generator.normal.object.tree.PineTreeObject


    @Override
    public TreeObject make(Random random) {
      if (random.nextInt(3) == 0) {
        return new SpruceTreeObject();
      }
      return new PineTreeObject();
    }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.world.generator.normal.object.tree.PineTreeObject

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.