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 40 additions and 0 deletions
Showing only changes of commit 12795451e6 - Show all commits

View File

@ -0,0 +1,20 @@
#include "xsurfacevertexinfo.h"
XSurfaceVertexInfo::XSurfaceVertexInfo()
: XAsset()
, mVertCount()
, mVertsBlendPtr()
, mVertsBlend()
{
}
void XSurfaceVertexInfo::ParseData(QDataStream *aStream)
{
}
void XSurfaceVertexInfo::Clear()
{
}

View File

@ -0,0 +1,20 @@
#ifndef XSURFACEVERTEXINFO_H
#define XSURFACEVERTEXINFO_H
#include "xasset.h"
class XSurfaceVertexInfo : public XAsset
{
public:
explicit XSurfaceVertexInfo();
void ParseData(QDataStream *aStream) override;
void Clear() override;
private:
qint16 mVertCount[4];
qint32 mVertsBlendPtr;
quint16 mVertsBlend;
};
#endif // XSURFACEVERTEXINFO_H