lolautoaccept/include/runeaspekt.h

19 lines
287 B
C++

#pragma once
#include <cstdint>
#include <string>
class QJsonObject;
struct RuneAspekt {
uint32_t id = 0;
std::string name;
std::string shortDesc;
std::string longDesc;
std::string tooltip;
std::string iconPath;
RuneAspekt();
explicit RuneAspekt(const QJsonObject& json);
};