mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-16 14:33:09 +01:00
Block instance getLocation() method.
By: Adam Tanner <adam@adamtanner.org>
This commit is contained in:
parent
74cf5f3f85
commit
5fcc3b626c
1 changed files with 9 additions and 0 deletions
|
@ -3,6 +3,7 @@ package org.bukkit.block;
|
||||||
import org.bukkit.Chunk;
|
import org.bukkit.Chunk;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
|
import org.bukkit.Location;
|
||||||
import org.bukkit.block.BlockState;
|
import org.bukkit.block.BlockState;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -114,6 +115,14 @@ public interface Block {
|
||||||
*/
|
*/
|
||||||
int getZ();
|
int getZ();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the Location of the block
|
||||||
|
*
|
||||||
|
* @return Location of block
|
||||||
|
*/
|
||||||
|
|
||||||
|
Location getLocation();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the chunk which contains this block
|
* Gets the chunk which contains this block
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue