MosswartMassacre/Unused/Decal.Adapter.Wrappers/DeathEventArgs.cs
2025-06-09 02:03:11 +02:00

15 lines
212 B
C#

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