XPlor/libs/xassets/xphysgeomlist.h

24 lines
420 B
C
Raw Permalink Normal View History

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();
2025-09-10 21:58:26 -04:00
virtual void ParseData(XDataStream* aStream) override;
2025-09-03 13:20:39 -04:00
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