mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
24 lines
351 B
C++
24 lines
351 B
C++
#pragma once
|
|
|
|
#include "messages/lazyloadedimage.hpp"
|
|
#include "util/concurrentmap.hpp"
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
|
|
#include <unordered_map>
|
|
|
|
namespace chatterino {
|
|
|
|
struct EmojiData {
|
|
QString value;
|
|
|
|
// what's used in the emoji-one url
|
|
QString code;
|
|
|
|
// i.e. thinking
|
|
QString shortCode;
|
|
};
|
|
|
|
} // namespace chatterino
|