24 lines
425 B
C++
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
|