All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.material.FurnaceAndDispenser Maven / Gradle / Ivy

The newest version!
package org.bukkit.material;

import org.bukkit.Material;

/**
 * Represents a furnace or dispenser, two types of directional containers
 */
public class FurnaceAndDispenser extends DirectionalContainer {

  /**
   * @param type the raw type id
   * @deprecated Magic value
   */
  @Deprecated
  public FurnaceAndDispenser(final int type) {
    super(type);
  }

  public FurnaceAndDispenser(final Material type) {
    super(type);
  }

  /**
   * @param type the raw type id
   * @param data the raw data value
   * @deprecated Magic value
   */
  @Deprecated
  public FurnaceAndDispenser(final int type, final byte data) {
    super(type, data);
  }

  /**
   * @param type the type
   * @param data the raw data value
   * @deprecated Magic value
   */
  @Deprecated
  public FurnaceAndDispenser(final Material type, final byte data) {
    super(type, data);
  }

  @Override
  public FurnaceAndDispenser clone() {
    return (FurnaceAndDispenser) super.clone();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy