mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
#501: Add PersistentDataHolder to Chunk
This commit is contained in:
parent
9165c3c0b0
commit
92b99cde85
1 changed files with 2 additions and 1 deletions
|
@ -5,13 +5,14 @@ import org.bukkit.block.Block;
|
|||
import org.bukkit.block.BlockState;
|
||||
import org.bukkit.block.data.BlockData;
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.persistence.PersistentDataHolder;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Represents a chunk of blocks
|
||||
*/
|
||||
public interface Chunk {
|
||||
public interface Chunk extends PersistentDataHolder {
|
||||
|
||||
/**
|
||||
* Gets the X-coordinate of this chunk
|
||||
|
|
Loading…
Add table
Reference in a new issue