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

14 lines
247 B
C#

namespace Decal.Adapter;
public class ChatParserInterceptEventArgs : EatableEventArgs
{
private string myText;
public string Text => myText;
internal ChatParserInterceptEventArgs(string text, bool eat)
: base(eat)
{
myText = text;
}
}