示例#1
0
        //private Action<Responce> Callback;

        public static Responces Ok()
        {
            Responces r = new Chat.Responces();

            r.Add(new Chat.Responce("Ok"));
            return(new Responces());
        }
示例#2
0
        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);
        }