// Constructor. public PlayerChatArgs(RequestifyTF2.API.User caller, string text) { User = caller; Chat = text; }
public static void Invoke(RequestifyTF2.API.User caller, string text) { var e = new PlayerChatArgs(caller, text); OnChat(e); }