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

12 lines
233 B
C#

namespace Decal.Adapter;
public class StatusTextInterceptEventArgs : EatableEventArgs
{
public string Text { get; protected set; }
internal StatusTextInterceptEventArgs(string text, bool eat)
: base(eat)
{
Text = text;
}
}