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 43 additions and 0 deletions
Showing only changes of commit 78a6efd02f - Show all commits

View File

@ -0,0 +1,23 @@
#include "xmodelstreaminfo.h"
XModelStreamInfo::XModelStreamInfo()
: XAsset()
, mHighMipBounds(new XModelHighMipBounds())
{
}
XModelStreamInfo::~XModelStreamInfo()
{
delete mHighMipBounds;
}
void XModelStreamInfo::ParseData(QDataStream *aStream)
{
}
void XModelStreamInfo::Clear()
{
mHighMipBounds->Clear();
}

View File

@ -0,0 +1,20 @@
#ifndef XMODELSTREAMINFO_H
#define XMODELSTREAMINFO_H
#include "xasset.h"
#include "xmodelhighmipbounds.h"
class XModelStreamInfo : public XAsset
{
public:
XModelStreamInfo();
~XModelStreamInfo();
virtual void ParseData(QDataStream* aStream) override;
virtual void Clear() override;
private:
XModelHighMipBounds *mHighMipBounds;
};
#endif // XMODELSTREAMINFO_H