Add xmodelhighmipbounds structures

This commit is contained in:
Nicholas Johnson 2025-09-03 13:18:40 -04:00
parent 3bed978b89
commit ef6f75c8a8
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#include "xmodelhighmipbounds.h"
XModelHighMipBounds::XModelHighMipBounds()
: XAsset()
, mMins()
, mMaxs()
{
}
XModelHighMipBounds::~XModelHighMipBounds()
{
}
void XModelHighMipBounds::ParseData(QDataStream *aStream)
{
}
void XModelHighMipBounds::Clear()
{
mMins = QVector3D();
mMaxs = QVector3D();
}

View File

@ -0,0 +1,22 @@
#ifndef XMODELHIGHMIPBOUNDS_H
#define XMODELHIGHMIPBOUNDS_H
#include "xasset.h"
#include <QVector3D>
class XModelHighMipBounds : public XAsset
{
public:
XModelHighMipBounds();
~XModelHighMipBounds();
virtual void ParseData(QDataStream* aStream) override;
virtual void Clear() override;
private:
QVector3D mMins;
QVector3D mMaxs;
};
#endif // XMODELHIGHMIPBOUNDS_H