using System; namespace Chernobyl.Destruction { /// /// An interface for working with items that can be killed or removed from /// some situation. /// public interface IDestroyable { /// /// An event that is raised when this object has been killed or will no /// longer be used until a later point. /// event EventHandler Destroyed; } }