mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
964e1f249a
- Clean up imports - Comment EmojiData - Reorder TwitchAccount constructor - Fix typo in TwitchChannel - Add emoji parsing test code at the bottom of EmoteManager
18 lines
302 B
C++
18 lines
302 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
static const char *ANONYMOUS_USERNAME_LABEL = " - anonymous - ";
|
|
|
|
namespace providers {
|
|
namespace twitch {
|
|
|
|
static const char *ANONYMOUS_USERNAME = "justinfan64537";
|
|
|
|
} // namespace twitch
|
|
} // namespace providers
|
|
|
|
} // namespace chatterino
|