sdf
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#ifndef TWITCHEMOTEVALUE_H
|
||||
#define TWITCHEMOTEVALUE_H
|
||||
|
||||
#include "QString"
|
||||
|
||||
struct TwitchEmoteValue
|
||||
{
|
||||
public:
|
||||
int set() {
|
||||
return m_set;
|
||||
}
|
||||
|
||||
int id() {
|
||||
return m_id;
|
||||
}
|
||||
|
||||
QString channelName() {
|
||||
return m_channelName;
|
||||
}
|
||||
|
||||
private:
|
||||
int m_set;
|
||||
int m_id;
|
||||
QString m_channelName;
|
||||
};
|
||||
|
||||
#endif // TWITCHEMOTEVALUE_H
|
||||
Reference in New Issue
Block a user