mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
7e13564c24
Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com> Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
25 lines
379 B
C++
25 lines
379 B
C++
#include "singletons/Emotes.hpp"
|
|
|
|
#include "Application.hpp"
|
|
#include "controllers/accounts/AccountController.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
Emotes::Emotes()
|
|
{
|
|
}
|
|
|
|
void Emotes::initialize(Settings &settings, Paths &paths)
|
|
{
|
|
this->emojis.load();
|
|
|
|
this->gifTimer.initialize();
|
|
}
|
|
|
|
bool Emotes::isIgnoredEmote(const QString &)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
} // namespace chatterino
|