XPlor/libs/xassets/xgameworldsp.h

28 lines
434 B
C
Raw Normal View History

2025-08-17 13:14:17 -04:00
#ifndef XGAMEWORLDSP_H
#define XGAMEWORLDSP_H
#include "xasset.h"
#include "xpathdata.h"
2025-09-05 18:35:17 -04:00
#include <QString>
2025-08-17 13:14:17 -04:00
class XGameWorldSp : public XAsset
{
public:
explicit XGameWorldSp();
2025-09-05 18:35:17 -04:00
~XGameWorldSp();
2025-08-17 13:14:17 -04:00
void ParseData(QDataStream *aStream) override;
2025-09-05 18:35:17 -04:00
void Clear() override;
2025-08-17 13:14:17 -04:00
QString GetName() const;
void SetName(const QString& name);
private:
QString mName;
2025-09-05 18:35:17 -04:00
XPathData mPath;
2025-08-17 13:14:17 -04:00
};
#endif // XGAMEWORLDSP_H