19 lines
311 B
C#
19 lines
311 B
C#
namespace Decal.Adapter;
|
|
|
|
public class ChatClickInterceptEventArgs : EatableEventArgs
|
|
{
|
|
private string myText;
|
|
|
|
private int myId;
|
|
|
|
public string Text => myText;
|
|
|
|
public int Id => myId;
|
|
|
|
internal ChatClickInterceptEventArgs(string text, int id, bool eat)
|
|
: base(eat)
|
|
{
|
|
myText = text;
|
|
myId = id;
|
|
}
|
|
}
|