2025-09-05 21:34:50 +00:00
|
|
|
#ifndef XGFXSTATICMODELINST_H
|
|
|
|
|
#define XGFXSTATICMODELINST_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
#include "xgfxcolor.h"
|
|
|
|
|
|
|
|
|
|
#include <QVector3D>
|
|
|
|
|
|
|
|
|
|
class XGfxStaticModelInst : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
XGfxStaticModelInst();
|
|
|
|
|
~XGfxStaticModelInst();
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
virtual void ParseData(XDataStream* aStream) override;
|
2025-09-05 21:34:50 +00:00
|
|
|
virtual void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QVector3D mMins;
|
|
|
|
|
QVector3D mMaxs;
|
|
|
|
|
XGfxColor mGroundLighting;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XGFXSTATICMODELINST_H
|