Beispiel #1
0
        public void AddSnippit(string who, string text, Responces responce, bool autoEnd = false)
        {
            //    text.InsertSpacing(_chat._FontSmall);
            Snippit sn = new Chat.Snippit(who, text, responce);

            sn.AutoEndSnippit = true;
            AddSnippit(sn);
        }
Beispiel #2
0
        public void AddSnippit(string who, string text, bool autoEnd = false)
        {
            // text.InsertSpacing(_chat._FontSmall);
            Snippit sn = new Chat.Snippit(who, text);

            sn.AutoEndSnippit = autoEnd;
            AddSnippit(sn);
        }