lolautoaccept/include/runeaspekt.h

19 lines
287 B
C
Raw Normal View History

2022-07-09 01:01:51 +02:00
#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);
};