Add xsurfacevertexinfo structures

This commit is contained in:
Nicholas Johnson 2025-09-03 13:28:03 -04:00
parent c9802401fb
commit 12795451e6
2 changed files with 40 additions and 0 deletions

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