Add BlockStates for more Blocks

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2016-12-02 09:29:21 +11:00
parent 8b0439979a
commit 6dda855a00
4 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,6 @@
package org.bukkit.block;
/**
* Represents an on / off comparator.
*/
public interface Comparator extends BlockState { }

View file

@ -0,0 +1,6 @@
package org.bukkit.block;
/**
* Represents a (possibly inverted) daylight detector.
*/
public interface DaylightDetector extends BlockState { }

View file

@ -0,0 +1,8 @@
package org.bukkit.block;
import org.bukkit.Nameable;
/**
* Represents an enchanting table.
*/
public interface EnchantingTable extends BlockState, Nameable { }

View file

@ -0,0 +1,6 @@
package org.bukkit.block;
/**
* Represents an ender chest.
*/
public interface EnderChest extends BlockState { }