Add xmaterialstreamrouting structures

This commit is contained in:
Nicholas Johnson 2025-09-03 13:15:52 -04:00
parent 3c13462618
commit b176bc3d00
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#include "xmapents.h"
XMapEnts::XMapEnts()
: XAsset()
{
}
XMapEnts::~XMapEnts()
{
}
void XMapEnts::Clear()
{
}
void XMapEnts::ParseData(QDataStream *aStream)
{
}

View File

@ -0,0 +1,20 @@
#ifndef XMATERIALSTREAMROUTING_H
#define XMATERIALSTREAMROUTING_H
#include "xasset.h"
class XMaterialStreamRouting : public XAsset
{
public:
explicit XMaterialStreamRouting();
~XMaterialStreamRouting();
virtual void Clear() override;
virtual void ParseData(QDataStream *aStream) override;
private:
quint8 mSource;
quint8 mDest;
};
#endif // XMATERIALSTREAMROUTING_H