Package org.getspout.spoutapi.material.item

Examples of org.getspout.spoutapi.material.item.GenericCustomItem


   * @param mirroredRotate can the block rotate upside-down
   * @param fullRotate     can the block rotate in all directions
   */
  protected GenericCustomBlock(Plugin plugin, String name, int blockId, int metadata, boolean rotate, boolean mirroredRotate, boolean fullRotate) {
    super(name, blockId, metadata);
    item = new GenericCustomItem(plugin, name);
    this.blockId = blockId;
    this.metadata = metadata;
    this.opaque = MaterialData.getBlock(blockId).isOpaque();
    this.plugin = plugin;
    this.fullName = item.getFullName();
View Full Code Here

TOP

Related Classes of org.getspout.spoutapi.material.item.GenericCustomItem

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.