feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
2 changed files with 45 additions and 0 deletions
Showing only changes of commit 6ab9a9b350 - Show all commits

View File

@ -0,0 +1,22 @@
#include "xrigidvertlist.h"
XRigidVertList::XRigidVertList()
: XAsset()
, mBoneOffset(0)
, mVertCount(0)
, mTriOffset(0)
, mTriCount(0)
, mCollisionTree(new XSurfaceCollisionTree())
{
}
void XRigidVertList::ParseData(QDataStream *aStream)
{
}
void XRigidVertList::Clear()
{
}

View File

@ -0,0 +1,23 @@
#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:
quint16 mBoneOffset;
quint16 mVertCount;
quint16 mTriOffset;
quint16 mTriCount;
XSurfaceCollisionTree *mCollisionTree;
};
#endif // XRIGIDVERTLIST_H