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();
|
2025-09-10 21:58:26 -04:00
|
|
|
~XRigidVertList();
|
2025-09-03 13:21:14 -04:00
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void ParseData(XDataStream *aStream) override;
|
2025-09-03 13:21:14 -04:00
|
|
|
void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
2025-09-10 21:58:26 -04:00
|
|
|
quint16 mBoneOffset;
|
|
|
|
|
quint16 mVertCount;
|
|
|
|
|
quint16 mTriOffset;
|
|
|
|
|
quint16 mTriCount;
|
|
|
|
|
XSurfaceCollisionTree mCollisionTree;
|
2025-09-03 13:21:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XRIGIDVERTLIST_H
|