A small component attached to a game object that records the owner Connection and a creation timestamp, and schedules the GameObject to be destroyed after 60 seconds when enabled.
public partial class DeathCameraTarget : Component
{
public Connection Connection { get; set; }
public DateTime Created { get; set; }
protected override void OnEnabled()
{
Invoke( 60.0f, GameObject.Destroy );
}
}