2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
#include "QString"
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
2018-02-05 15:11:50 +01:00
|
|
|
namespace providers {
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace twitch {
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
struct EmoteValue {
|
|
|
|
public:
|
|
|
|
int getSet()
|
|
|
|
{
|
|
|
|
return _set;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getId()
|
|
|
|
{
|
|
|
|
return _id;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &getChannelName()
|
|
|
|
{
|
|
|
|
return _channelName;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int _set;
|
|
|
|
int _id;
|
|
|
|
QString _channelName;
|
|
|
|
};
|
|
|
|
|
2017-06-07 10:09:24 +02:00
|
|
|
} // namespace twitch
|
2018-02-05 15:11:50 +01:00
|
|
|
} // namespace providers
|
2017-06-07 10:09:24 +02:00
|
|
|
} // namespace chatterino
|