Package org.spoutcraft.api.block.design

Examples of org.spoutcraft.api.block.design.GenericCubeBlockDesign


   * @param texture url to use for the block - must be a square PNG
   * @param textureSize width and height of the texture in pixels
   */
  public GenericCubeCustomBlock(String addon, String name, String texture, int textureSize) {
    super(addon, name);
    this.setBlockDesign(new GenericCubeBlockDesign(addon, texture, textureSize));
  }
View Full Code Here

TOP

Related Classes of org.spoutcraft.api.block.design.GenericCubeBlockDesign

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.