chatroom emotes
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
#include "TwitchChannel.hpp"
|
||||
|
||||
#include <QString>
|
||||
#include <atomic>
|
||||
|
||||
namespace chatterino {
|
||||
|
||||
class ChatroomChannel : public TwitchChannel
|
||||
{
|
||||
protected:
|
||||
explicit ChatroomChannel(const QString &channelName,
|
||||
TwitchBadges &globalTwitchBadges,
|
||||
BttvEmotes &globalBttv, FfzEmotes &globalFfz);
|
||||
virtual void refreshChannelEmotes() override;
|
||||
|
||||
QString chatroomOwnerId;
|
||||
|
||||
friend class TwitchServer;
|
||||
friend class TwitchMessageBuilder;
|
||||
friend class IrcMessageHandler;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
Reference in New Issue
Block a user