24 lines
417 B
C#
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;
|
|
}
|
|
}
|