//private Action<Responce> Callback; public static Responces Ok() { Responces r = new Chat.Responces(); r.Add(new Chat.Responce("Ok")); return(new Responces()); }
public void AddSnippit(string who, string text, Responce responce, bool autoEnd = false) { // text.InsertSpacing(_chat._FontSmall); Responces r = new Chat.Responces(); r.Add(responce); Snippit sn = new Chat.Snippit(who, text, r); sn.AutoEndSnippit = true; AddSnippit(sn); }