XPlor/libs/xassets/xphysgeomlist.h
2025-09-03 13:20:39 -04:00

24 lines
425 B
C++

#ifndef XPHYSGEOMLIST_H
#define XPHYSGEOMLIST_H
#include "xasset.h"
#include "xphysmass.h"
#include "xphysgeominfo.h"
class XPhysGeomList : public XAsset
{
public:
XPhysGeomList();
~XPhysGeomList();
virtual void ParseData(QDataStream* aStream) override;
virtual void Clear() override;
private:
unsigned int mCount;
QVector<XPhysGeomInfo> mGeoms;
XPhysMass mMass;
};
#endif // XPHYSGEOMLIST_H