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

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;
}
}