13 lines
275 B
Java
13 lines
275 B
Java
package org.bukkit.command;
|
|
|
|
import org.bukkit.block.Block;
|
|
|
|
public interface BlockCommandSender extends CommandSender {
|
|
/**
|
|
* Returns the block this command sender belongs to
|
|
*
|
|
* @return Block for the command sender
|
|
*/
|
|
public Block getBlock();
|
|
}
|