mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
29 lines
496 B
C++
29 lines
496 B
C++
#pragma once
|
|
|
|
#define GIF_FRAME_LENGTH 33
|
|
|
|
#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 EmoteManager
|
|
{
|
|
public:
|
|
~EmoteManager() = delete;
|
|
|
|
void initialize();
|
|
|
|
TwitchEmotes twitch;
|
|
BTTVEmotes bttv;
|
|
FFZEmotes ffz;
|
|
Emojis emojis;
|
|
|
|
GIFTimer gifTimer;
|
|
};
|
|
|
|
} // namespace chatterino
|