Add BlockLockCheckEvent

This commit is contained in:
Jake Potrebic
2022-05-21 20:59:56 -07:00
parent 345305859e
commit 4b5bb29329
4 changed files with 200 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
package io.papermc.paper.block;
import org.bukkit.Nameable;
import org.bukkit.block.Lockable;
import org.bukkit.block.TileState;
/**
* Interface for tile entities that are lockable.
*/
public interface LockableTileState extends TileState, Lockable, Nameable {
}