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