using System; namespace Decal.Adapter.Wrappers; public class DeathEventArgs : EventArgs { private string myText; public string Text => myText; internal DeathEventArgs(string text) { myText = text; } }