Update to Minecraft 1.15

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2019-12-11 09:00:00 +11:00
parent fb6a646cbc
commit 7887b38ac0
21 changed files with 299 additions and 322 deletions

View File

@@ -0,0 +1,25 @@
package org.bukkit.block;
import org.bukkit.Location;
import org.jetbrains.annotations.Nullable;
/**
* Represents a captured state of a bee hive.
*/
public interface Beehive extends TileState {
/**
* Get the hive's flower location.
*
* @return flower location or null
*/
@Nullable
Location getFlower();
/**
* Set the hive's flower location.
*
* @param location or null
*/
void setFlower(@Nullable Location location);
}