2025-09-03 13:20:39 -04:00
|
|
|
#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:
|
2025-09-07 12:36:08 -04:00
|
|
|
quint32 mCount;
|
2025-09-03 13:20:39 -04:00
|
|
|
QVector<XPhysGeomInfo> mGeoms;
|
|
|
|
|
XPhysMass mMass;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XPHYSGEOMLIST_H
|