org.bukkit.material.FurnaceAndDispenser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chest-server Show documentation
Show all versions of chest-server Show documentation
A spigot fork to kotlin structure and news.
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