mirror-chatterino2/src/singletons/Emotes.hpp
2020-02-16 14:24:11 +01:00

32 lines
590 B
C++

#pragma once
#include "common/Singleton.hpp"
#include "providers/bttv/BttvEmotes.hpp"
#include "providers/emoji/Emojis.hpp"
#include "providers/ffz/FfzEmotes.hpp"
#include "providers/twitch/TwitchEmotes.hpp"
#include "singletons/helper/GifTimer.hpp"
namespace chatterino {
class Settings;
class Paths;
class Emotes final : public Singleton
{
public:
Emotes();
virtual void initialize(Settings &settings, Paths &paths) override;
bool isIgnoredEmote(const QString &emote);
TwitchEmotes twitch;
Emojis emojis;
GIFTimer gifTimer;
};
} // namespace chatterino