Examples of ShrubObject


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

    public TreeObject make(Random random) {
      if (random.nextInt(10) == 0) {
        return new BigTreeObject();
      }
      if (random.nextInt(2) == 0) {
        return new ShrubObject();
      }
      if (random.nextInt(3) == 0) {
        return new HugeTreeObject();
      }
      final SmallTreeObject tree = new SmallTreeObject();
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.