14 lines
247 B
C#
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;
|
|
}
|
|
}
|