XPlor/libs/xassets/xgfxworldstreaminfo.h

35 lines
509 B
C
Raw Normal View History

2025-08-17 13:14:17 -04:00
#ifndef XGFXWORLDSTREAMINFO_H
#define XGFXWORLDSTREAMINFO_H
#include "xasset.h"
#include "xgfxstreamingaabbtree.h"
2025-09-05 18:35:17 -04:00
#include <QVector>
2025-08-17 13:14:17 -04:00
class XGfxWorldStreamInfo : public XAsset
{
public:
explicit XGfxWorldStreamInfo();
2025-09-05 18:35:17 -04:00
~XGfxWorldStreamInfo();
2025-08-17 13:14:17 -04:00
2025-09-10 21:58:26 -04:00
void ParseData(XDataStream *aStream) override;
2025-09-05 18:35:17 -04:00
void Clear() override;
2025-08-17 13:14:17 -04:00
private:
2025-09-05 18:35:17 -04:00
int mAabbTreeCount;
2025-08-17 13:14:17 -04:00
QVector<XGfxStreamingAabbTree> mAabbTrees;
2025-09-05 18:35:17 -04:00
int mLeafRefCount;
2025-08-17 13:14:17 -04:00
QVector<int> mLeafRefs;
};
#endif // XGFXWORLDSTREAMINFO_H