Update to Minecraft 1.19.4

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2023-03-15 03:30:00 +11:00
parent 86d3c9caa7
commit b76cbe36c5
32 changed files with 1379 additions and 7 deletions

View File

@@ -0,0 +1,25 @@
package org.bukkit.entity;
import org.bukkit.block.data.BlockData;
import org.jetbrains.annotations.NotNull;
/**
* Represents a block display entity.
*/
public interface BlockDisplay extends Display {
/**
* Gets the displayed block.
*
* @return the displayed block
*/
@NotNull
public BlockData getBlock();
/**
* Sets the displayed block.
*
* @param block the new block
*/
public void setBlock(@NotNull BlockData block);
}