57d6583a2b
I have knowingly skipped some files/portions of files where this would create merge conflicts for other open PRs.
31 lines
375 B
C++
31 lines
375 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
struct EmoteValue {
|
|
public:
|
|
int getSet()
|
|
{
|
|
return this->set_;
|
|
}
|
|
|
|
int getId()
|
|
{
|
|
return this->id_;
|
|
}
|
|
|
|
const QString &getChannelName()
|
|
{
|
|
return this->channelName_;
|
|
}
|
|
|
|
private:
|
|
int set_;
|
|
int id_;
|
|
QString channelName_;
|
|
};
|
|
|
|
} // namespace chatterino
|