mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
SPIGOT-4778: Bell Attachment is missing
This commit is contained in:
parent
7407eaacc9
commit
42a16e3c73
1 changed files with 16 additions and 0 deletions
|
@ -1,12 +1,28 @@
|
||||||
package org.bukkit.block.data.type;
|
package org.bukkit.block.data.type;
|
||||||
|
|
||||||
import org.bukkit.block.data.Directional;
|
import org.bukkit.block.data.Directional;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 'attachment' denotes how the bell is attached to its block.
|
* 'attachment' denotes how the bell is attached to its block.
|
||||||
*/
|
*/
|
||||||
public interface Bell extends Directional {
|
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.
|
* What the bell is attached to.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue