lolautoaccept/include/runeaspekt.h

19 lines
267 B
C
Raw Permalink 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;
2023-05-31 22:22:23 +02:00
QString name;
QString shortDesc;
QString longDesc;
QString tooltip;
QString iconPath;
2022-07-09 01:01:51 +02:00
RuneAspekt();
explicit RuneAspekt(const QJsonObject& json);
};