mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
Add BlockStates for more Blocks
By: md_5 <git@md-5.net>
This commit is contained in:
parent
8b0439979a
commit
6dda855a00
4 changed files with 26 additions and 0 deletions
6
paper-api/src/main/java/org/bukkit/block/Comparator.java
Normal file
6
paper-api/src/main/java/org/bukkit/block/Comparator.java
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
package org.bukkit.block;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an on / off comparator.
|
||||||
|
*/
|
||||||
|
public interface Comparator extends BlockState { }
|
|
@ -0,0 +1,6 @@
|
||||||
|
package org.bukkit.block;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a (possibly inverted) daylight detector.
|
||||||
|
*/
|
||||||
|
public interface DaylightDetector extends BlockState { }
|
|
@ -0,0 +1,8 @@
|
||||||
|
package org.bukkit.block;
|
||||||
|
|
||||||
|
import org.bukkit.Nameable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an enchanting table.
|
||||||
|
*/
|
||||||
|
public interface EnchantingTable extends BlockState, Nameable { }
|
6
paper-api/src/main/java/org/bukkit/block/EnderChest.java
Normal file
6
paper-api/src/main/java/org/bukkit/block/EnderChest.java
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
package org.bukkit.block;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an ender chest.
|
||||||
|
*/
|
||||||
|
public interface EnderChest extends BlockState { }
|
Loading…
Reference in a new issue