Package org.spout.vanilla.material.block.solid

Examples of org.spout.vanilla.material.block.solid.Stone


    VanillaConfiguration.LAVA_DELAY.setConfiguration(config);
    VanillaConfiguration.WATER_DELAY.setConfiguration(config);

    EngineFaker.setupEngine();
    try {
      new Stone("Test Stone", 87945);
      VanillaMaterials.initialize();
      for (Field field : VanillaMaterials.class.getFields()) {
        try {
          if (field == null || ((field.getModifiers() & (Modifier.STATIC | Modifier.PUBLIC)) != (Modifier.STATIC | Modifier.PUBLIC)) || !VanillaMaterial.class.isAssignableFrom(field.getType())) {
            continue;
View Full Code Here

TOP

Related Classes of org.spout.vanilla.material.block.solid.Stone

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.