Add Beacon BlockState for hopper events. Fixes BUKKIT-3932

This commit is contained in:
Travis Watkins 2013-03-29 22:25:13 -05:00
parent bde69789d3
commit a7885f5f25

View File

@ -0,0 +1,9 @@
package org.bukkit.block;
import org.bukkit.inventory.InventoryHolder;
/**
* Represents a beacon.
*/
public interface Beacon extends BlockState, InventoryHolder {
}