diff --git a/libs/xassets/xgputexturesize1d.cpp b/libs/xassets/xgputexturesize1d.cpp new file mode 100644 index 0000000..f2311ae --- /dev/null +++ b/libs/xassets/xgputexturesize1d.cpp @@ -0,0 +1,18 @@ +#include "xgputexturesize1d.h" + +XGpuTextureSize1D::XGpuTextureSize1D() + : XAsset() + , mWidth(0) +{ + +} + +void XGpuTextureSize1D::ParseData(QDataStream *aStream) +{ + +} + +void XGpuTextureSize1D::Clear() +{ + +} diff --git a/libs/xassets/xgputexturesize1d.h b/libs/xassets/xgputexturesize1d.h new file mode 100644 index 0000000..f8174c4 --- /dev/null +++ b/libs/xassets/xgputexturesize1d.h @@ -0,0 +1,26 @@ +#ifndef XGPUTEXTURESIZE1D_H +#define XGPUTEXTURESIZE1D_H + +#include "xasset.h" + +class XGpuTextureSize1D : public XAsset +{ +public: + explicit XGpuTextureSize1D(); + + void ParseData(QDataStream *aStream) override; + void Clear() override; + +private: + quint32 mWidth; +}; + +#endif // XGPUTEXTURESIZE1D_H + + + + + + + +