mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
32 lines
590 B
C++
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
|