mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
30 lines
357 B
C++
30 lines
357 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
struct EmoteValue {
|
|
public:
|
|
int getSet()
|
|
{
|
|
return set_;
|
|
}
|
|
|
|
int getId()
|
|
{
|
|
return id_;
|
|
}
|
|
|
|
const QString &getChannelName()
|
|
{
|
|
return channelName_;
|
|
}
|
|
|
|
private:
|
|
int set_;
|
|
int id_;
|
|
QString channelName_;
|
|
};
|
|
|
|
} // namespace chatterino
|