예제 #1
0
    private void HandleUSERSTATE(string ircString, string tagString)
    {
        // Parse USERSTATE
        IRCUserstate userstate = new IRCUserstate(ParseHelper.ParseChannel(ircString));

        // Parse Tags
        IRCTags tags = ParseHelper.ParseTags(tagString, settings.parseBadges, settings.parseTwitchEmotes);

        clientChatter = new Chatter(userstate, tags);
    }
예제 #2
0
 public Chatter(IRCUserstate Userstate, IRCTags Tags)
 {
     channel = Userstate.channel;
     tags    = Tags;
 }