39f7d8ac4c
Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
12 lines
275 B
C++
12 lines
275 B
C++
#include "providers/seventv/eventapi/SeventvEventAPIMessage.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
SeventvEventAPIMessage::SeventvEventAPIMessage(QJsonObject _json)
|
|
: data(_json["d"].toObject())
|
|
, op(SeventvEventAPIOpcode(_json["op"].toInt()))
|
|
{
|
|
}
|
|
|
|
} // namespace chatterino
|