Updated libs/xassets/xgfxworlddpvsplanes.cpp

This commit is contained in:
RedLine AI Agent 2025-09-05 21:34:57 +00:00
parent 5ecabfee07
commit 9e4d14f686

View File

@ -0,0 +1,35 @@
#include "xgfxworlddpvsplanes.h"
XGfxWorldDpvsPlanes::XGfxWorldDpvsPlanes()
: XAsset()
, aCellCount(0)
, aPlanesPtr(0)
, aPlanes()
, aNodesPtr(0)
, aNodes()
, aSceneEntCellBitsPtr(0)
, aSceneEntCellBits()
{
}
XGfxWorldDpvsPlanes::~XGfxWorldDpvsPlanes()
{
}
void XGfxWorldDpvsPlanes::ParseData(QDataStream *aStream)
{
}
void XGfxWorldDpvsPlanes::Clear()
{
aCellCount = 0;
aPlanesPtr = 0;
aPlanes.clear();
aNodesPtr = 0;
aNodes.clear();
aSceneEntCellBitsPtr = 0;
aSceneEntCellBits.clear();
}