XPlor/libs/xassets/xgputexturesizestack3d.cpp
2025-09-03 13:11:38 -04:00

23 lines
321 B
C++

#include "xgputexturesizestack3d.h"
XGpuTextureSizeStack3D::XGpuTextureSizeStack3D()
: XAsset()
, mWidth(0)
, mHeight(0)
, mDepth(0)
{
}
void XGpuTextureSizeStack3D::ParseData(QDataStream *aStream)
{
}
void XGpuTextureSizeStack3D::Clear()
{
mWidth = 0;
mHeight = 0;
mDepth = 0;
}