14 lines
290 B
Java
14 lines
290 B
Java
package org.bukkit.projectiles;
|
|
|
|
import org.bukkit.block.Block;
|
|
|
|
public interface BlockProjectileSource extends ProjectileSource {
|
|
|
|
/**
|
|
* Gets the block this projectile source belongs to.
|
|
*
|
|
* @return Block for the projectile source
|
|
*/
|
|
public Block getBlock();
|
|
}
|