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

24 lines
417 B
C#

namespace Decal.Adapter;
public class ChatTextInterceptEventArgs : EatableEventArgs
{
private string myText;
private int myColor;
private int myTarget;
public string Text => myText;
public int Color => myColor;
public int Target => myTarget;
internal ChatTextInterceptEventArgs(string text, int color, int target, bool eat)
: base(eat)
{
myText = text;
myColor = color;
myTarget = target;
}
}