2025-09-03 13:21:14 -04:00
|
|
|
#ifndef XRIGIDVERTLIST_H
|
|
|
|
|
#define XRIGIDVERTLIST_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
#include "xsurfacecollisiontree.h"
|
|
|
|
|
|
|
|
|
|
class XRigidVertList : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit XRigidVertList();
|
|
|
|
|
|
|
|
|
|
void ParseData(QDataStream *aStream) override;
|
|
|
|
|
void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
2025-09-07 12:36:08 -04:00
|
|
|
quint32 mBoneOffset;
|
|
|
|
|
quint32 mVertCount;
|
|
|
|
|
quint32 mTriOffset;
|
|
|
|
|
quint32 mTriCount;
|
2025-09-03 13:21:14 -04:00
|
|
|
XSurfaceCollisionTree *mCollisionTree;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XRIGIDVERTLIST_H
|