Add xsurfacevertexinfo structures
This commit is contained in:
parent
c9802401fb
commit
12795451e6
20
libs/xassets/xsurfacevertexinfo.cpp
Normal file
20
libs/xassets/xsurfacevertexinfo.cpp
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#include "xsurfacevertexinfo.h"
|
||||||
|
|
||||||
|
XSurfaceVertexInfo::XSurfaceVertexInfo()
|
||||||
|
: XAsset()
|
||||||
|
, mVertCount()
|
||||||
|
, mVertsBlendPtr()
|
||||||
|
, mVertsBlend()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XSurfaceVertexInfo::ParseData(QDataStream *aStream)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XSurfaceVertexInfo::Clear()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
20
libs/xassets/xsurfacevertexinfo.h
Normal file
20
libs/xassets/xsurfacevertexinfo.h
Normal 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
|
||||||
Loading…
x
Reference in New Issue
Block a user