namespace Fungus { /// /// Interface for indicating that the class holds a reference to and may call a block /// public interface IBlockCaller { bool MayCallBlock(Block block); string GetLocationIdentifier(); } }