mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
35 lines
447 B
C++
35 lines
447 B
C++
#pragma once
|
|
|
|
#include "QString"
|
|
|
|
namespace chatterino {
|
|
namespace providers {
|
|
namespace twitch {
|
|
|
|
struct EmoteValue {
|
|
public:
|
|
int getSet()
|
|
{
|
|
return _set;
|
|
}
|
|
|
|
int getId()
|
|
{
|
|
return _id;
|
|
}
|
|
|
|
const QString &getChannelName()
|
|
{
|
|
return _channelName;
|
|
}
|
|
|
|
private:
|
|
int _set;
|
|
int _id;
|
|
QString _channelName;
|
|
};
|
|
|
|
} // namespace twitch
|
|
} // namespace providers
|
|
} // namespace chatterino
|