diff --git a/libs/xassets/xsurfacevertexinfo.cpp b/libs/xassets/xsurfacevertexinfo.cpp new file mode 100644 index 0000000..88ce566 --- /dev/null +++ b/libs/xassets/xsurfacevertexinfo.cpp @@ -0,0 +1,20 @@ +#include "xsurfacevertexinfo.h" + +XSurfaceVertexInfo::XSurfaceVertexInfo() + : XAsset() + , mVertCount() + , mVertsBlendPtr() + , mVertsBlend() +{ + +} + +void XSurfaceVertexInfo::ParseData(QDataStream *aStream) +{ + +} + +void XSurfaceVertexInfo::Clear() +{ + +} diff --git a/libs/xassets/xsurfacevertexinfo.h b/libs/xassets/xsurfacevertexinfo.h new file mode 100644 index 0000000..f4dff40 --- /dev/null +++ b/libs/xassets/xsurfacevertexinfo.h @@ -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