Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / material / Redstone.java
@vlad20012 vlad20012 on 24 Feb 2017 313 bytes initial
package org.bukkit.material;

/**
 * Indicated a Material that may carry or create a Redstone current
 */
public interface Redstone
{

	/**
	 * Gets the current state of this Material, indicating if it's powered or
	 * unpowered
	 *
	 * @return true if powered, otherwise false
	 */
	public boolean isPowered();
}