001 package org.bukkit.projectiles; 002 003 import org.bukkit.block.Block; 004 005 public interface BlockProjectileSource extends ProjectileSource { 006 007 /** 008 * Gets the block this projectile source belongs to. 009 * 010 * @return Block for the projectile source 011 */ 012 public Block getBlock(); 013 }