2025-09-05 21:34:49 +00:00
|
|
|
#include "xgfxstaticmodelinst.h"
|
|
|
|
|
|
|
|
|
|
XGfxStaticModelInst::XGfxStaticModelInst()
|
|
|
|
|
: XAsset()
|
|
|
|
|
, mMins()
|
|
|
|
|
, mMaxs()
|
|
|
|
|
, mGroundLighting()
|
|
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
SetName("GFX Static Model Instruction");
|
2025-09-05 21:34:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XGfxStaticModelInst::~XGfxStaticModelInst()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void XGfxStaticModelInst::ParseData(XDataStream *aStream)
|
2025-09-05 21:34:49 +00:00
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
Q_UNUSED(aStream);
|
|
|
|
|
|
|
|
|
|
// TODO: Fill in XGfxStaticModelInst::ParseData
|
2025-09-05 21:34:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XGfxStaticModelInst::Clear()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|