mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
36 lines
416 B
C++
36 lines
416 B
C++
#ifndef TWITCHEMOTEVALUE_H
|
|
#define TWITCHEMOTEVALUE_H
|
|
|
|
#include "QString"
|
|
|
|
namespace chatterino {
|
|
|
|
struct TwitchEmoteValue {
|
|
public:
|
|
int
|
|
getSet()
|
|
{
|
|
return set;
|
|
}
|
|
|
|
int
|
|
getId()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
const QString &
|
|
getChannelName()
|
|
{
|
|
return channelName;
|
|
}
|
|
|
|
private:
|
|
int set;
|
|
int id;
|
|
QString channelName;
|
|
};
|
|
}
|
|
|
|
#endif // TWITCHEMOTEVALUE_H
|