Updated libs/xassets/xgfxcell.h
This commit is contained in:
parent
240a643111
commit
af3f28752a
37
libs/xassets/xgfxcell.h
Normal file
37
libs/xassets/xgfxcell.h
Normal file
@ -0,0 +1,37 @@
|
||||
#ifndef XGFXCELL_H
|
||||
#define XGFXCELL_H
|
||||
|
||||
#include "xasset.h"
|
||||
#include "xgfxportal.h"
|
||||
#include "xgfxaabbtree.h"
|
||||
|
||||
#include <QVector>
|
||||
#include <QVector3D>
|
||||
|
||||
class XGfxCell : public XAsset
|
||||
{
|
||||
public:
|
||||
XGfxCell();
|
||||
~XGfxCell();
|
||||
|
||||
virtual void ParseData(QDataStream* aStream) override;
|
||||
virtual void Clear() override;
|
||||
|
||||
private:
|
||||
QVector3D mMins;
|
||||
QVector3D mMaxs;
|
||||
|
||||
int mAabbTreeCount;
|
||||
QVector<XGfxAabbTree> mAabbTree;
|
||||
|
||||
int mPortalCount;
|
||||
QVector<XGfxPortal> mPortals;
|
||||
|
||||
int mCullGroupCount;
|
||||
QVector<int> mCullGroups;
|
||||
|
||||
quint8 mReflectionProbeCount;
|
||||
QVector<quint8> mReflectionProbes;
|
||||
};
|
||||
|
||||
#endif // XGFXCELL_H
|
||||
Loading…
x
Reference in New Issue
Block a user