mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
Make Lantern extend BlockData
By: Noah <noahdaeger@hotmail.com>
This commit is contained in:
parent
550732e436
commit
2b1d1adac0
1 changed files with 3 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
||||||
package org.bukkit.block.data.type;
|
package org.bukkit.block.data.type;
|
||||||
|
|
||||||
|
import org.bukkit.block.data.BlockData;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 'hanging' denotes whether the lantern is hanging from a block.
|
* 'hanging' denotes whether the lantern is hanging from a block.
|
||||||
*/
|
*/
|
||||||
public interface Lantern {
|
public interface Lantern extends BlockData {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the 'hanging' property.
|
* Gets the value of the 'hanging' property.
|
||||||
|
|
Loading…
Reference in a new issue