XPlor/libs/xassets/xgfxstaticmodelinst.cpp
2025-09-10 21:58:26 -04:00

28 lines
457 B
C++

#include "xgfxstaticmodelinst.h"
XGfxStaticModelInst::XGfxStaticModelInst()
: XAsset()
, mMins()
, mMaxs()
, mGroundLighting()
{
SetName("GFX Static Model Instruction");
}
XGfxStaticModelInst::~XGfxStaticModelInst()
{
}
void XGfxStaticModelInst::ParseData(XDataStream *aStream)
{
Q_UNUSED(aStream);
// TODO: Fill in XGfxStaticModelInst::ParseData
}
void XGfxStaticModelInst::Clear()
{
}