XPlor/libs/xassets/xgameworldsp.h

24 lines
366 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-07 23:15:56 -04:00
#include "xstring.h"
2025-09-05 18:35:17 -04:00
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
private:
2025-09-07 23:15:56 -04:00
XString mName;
2025-09-05 18:35:17 -04:00
XPathData mPath;
2025-08-17 13:14:17 -04:00
};
#endif // XGAMEWORLDSP_H