mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-10 05:39:15 +01:00
SPIGOT-4778: Bell Attachment is missing
By: md_5 <git@md-5.net>
This commit is contained in:
parent
f897021458
commit
fb39d0943e
@ -1,12 +1,28 @@
|
||||
package org.bukkit.block.data.type;
|
||||
|
||||
import org.bukkit.block.data.Directional;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* 'attachment' denotes how the bell is attached to its block.
|
||||
*/
|
||||
public interface Bell extends Directional {
|
||||
|
||||
/**
|
||||
* Gets the value of the 'attachment' property.
|
||||
*
|
||||
* @return the 'attachment' value
|
||||
*/
|
||||
@NotNull
|
||||
Attachment getAttachment();
|
||||
|
||||
/**
|
||||
* Sets the value of the 'attachment' property.
|
||||
*
|
||||
* @param attachment the new 'attachment' value
|
||||
*/
|
||||
void setAttachment(@NotNull Attachment attachment);
|
||||
|
||||
/**
|
||||
* What the bell is attached to.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user