Updated libs/xassets/xgfxworlddpvsdynamic.h
This commit is contained in:
parent
caa9fe276e
commit
5ecabfee07
26
libs/xassets/xgfxworlddpvsdynamic.h
Normal file
26
libs/xassets/xgfxworlddpvsdynamic.h
Normal file
@ -0,0 +1,26 @@
|
||||
#ifndef XGFXWORLDDPVSDYNAMIC_H
|
||||
#define XGFXWORLDDPVSDYNAMIC_H
|
||||
|
||||
#include "xasset.h"
|
||||
|
||||
#include <QVector>
|
||||
|
||||
class XGfxWorldDpvsDynamic : public XAsset
|
||||
{
|
||||
public:
|
||||
XGfxWorldDpvsDynamic();
|
||||
~XGfxWorldDpvsDynamic();
|
||||
|
||||
virtual void ParseData(QDataStream* aStream) override;
|
||||
virtual void Clear() override;
|
||||
|
||||
private:
|
||||
QVector<uint> mDynEntClientWordCount;
|
||||
QVector<uint> mDynEntClientCount;
|
||||
QVector<qint32> mDynEntCellBitsPtrs;
|
||||
QVector<uint> mDynEntCellBits;
|
||||
QVector<QVector<qint32>> mDynEntVisDataPtrs;
|
||||
QVector<QVector<quint8>> mDynEntVisData;
|
||||
};
|
||||
|
||||
#endif // XGFXWORLDDPVSDYNAMIC_H
|
||||
Loading…
x
Reference in New Issue
Block a user