Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / projectiles / BlockProjectileSource.java
@vlad20012 vlad20012 on 24 Feb 2017 271 bytes initial
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();
}