mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
25 lines
396 B
C++
25 lines
396 B
C++
|
#pragma once
|
||
|
|
||
|
#include "messages/lazyloadedimage.hpp"
|
||
|
#include "util/concurrentmap.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace util {
|
||
|
|
||
|
struct EmoteData {
|
||
|
EmoteData()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
EmoteData(messages::LazyLoadedImage *_image)
|
||
|
: image(_image)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
messages::LazyLoadedImage *image = nullptr;
|
||
|
};
|
||
|
|
||
|
typedef ConcurrentMap<QString, EmoteData> EmoteMap;
|
||
|
}
|
||
|
}
|