feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
2 changed files with 47 additions and 0 deletions
Showing only changes of commit ef6f75c8a8 - Show all commits

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