XPlor/libs/xassets/xsurface.cpp

30 lines
410 B
C++
Raw Normal View History

2025-09-03 13:25:58 -04:00
#include "xsurface.h"
XSurface::XSurface()
: XAsset()
, mTileMode(0)
, mDeformed(false)
, mVertCount(0)
, mTriCount(0)
, mTriIndices(0)
, mVertInfo()
, mVerts0(new XGfxPackedVertex())
, mVb0()
, mVertListCount(0)
, mVertList()
, mIndexBuffer()
, mPartBits()
{
}
void XSurface::ParseData(QDataStream *aStream)
{
}
void XSurface::Clear()
{
}