protected virtual void OnGone() { Gone?.Invoke(this, EventArgs.Empty); }
public void OnGone() { Console.WriteLine($"{Name} leaves"); Gone?.Invoke(this); }
private void OnGone() { Gone?.Invoke(this, EventArgs.Empty); }