UltimateTimber/src/main/java/com/songoda/ultimatetimber/tree/ITreeBlock.java

29 lines
536 B
Java
Raw Normal View History

2019-03-28 05:22:13 +01:00
package com.songoda.ultimatetimber.tree;
import org.bukkit.Location;
2019-03-28 05:22:13 +01:00
public interface ITreeBlock<BlockType> {
/**
* Gets the block this TreeBlock represents
*
* @return The Block for this TreeBlock
*/
BlockType getBlock();
/**
* Gets the location of this TreeBlock
*
* @return The Location of this TreeBlock
*/
Location getLocation();
2019-03-28 05:22:13 +01:00
/**
* Gets what type of TreeBlock this is
*
* @return The TreeBlockType
*/
TreeBlockType getTreeBlockType();
}