Interface declaring a kill icon property. It defines IKillIcon with a DisplayIcon Texture getter and setter for use in killfeed or UI components.
/// <summary>
/// This component has a kill icon that can be used in the killfeed, or somewhere else.
/// </summary>
public interface IKillIcon
{
public Texture DisplayIcon { get; set; }
}