mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
253 B
C++
19 lines
253 B
C++
#include "settings/settings.h"
|
|
|
|
namespace chatterino {
|
|
namespace settings {
|
|
|
|
messages::Word::Type Settings::wordTypeMask = messages::Word::Default;
|
|
|
|
Settings::Settings()
|
|
{
|
|
}
|
|
|
|
bool
|
|
Settings::isIgnoredEmote(const QString &emote)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|