mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
24 lines
554 B
C++
24 lines
554 B
C++
#include "singletons/EmoteManager.hpp"
|
|
|
|
#include "Application.hpp"
|
|
#include "controllers/accounts/AccountController.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
void EmoteManager::initialize()
|
|
{
|
|
getApp()->accounts->twitch.currentUserChanged.connect([this] {
|
|
auto currentUser = getApp()->accounts->twitch.getCurrent();
|
|
assert(currentUser);
|
|
this->twitch.refresh(currentUser);
|
|
});
|
|
|
|
this->emojis.load();
|
|
this->bttv.loadGlobalEmotes();
|
|
this->ffz.loadGlobalEmotes();
|
|
|
|
this->gifTimer.initialize();
|
|
}
|
|
|
|
} // namespace chatterino
|