Add xpackedtexcoords structures
This commit is contained in:
parent
78a6efd02f
commit
e7077aae63
18
libs/xassets/xpackedtexcoords.cpp
Normal file
18
libs/xassets/xpackedtexcoords.cpp
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#include "xpackedtexcoords.h"
|
||||||
|
|
||||||
|
XPackedTexCoords::XPackedTexCoords()
|
||||||
|
: XAsset()
|
||||||
|
, mPacked(0)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XPackedTexCoords::ParseData(QDataStream *aStream)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XPackedTexCoords::Clear()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
18
libs/xassets/xpackedtexcoords.h
Normal file
18
libs/xassets/xpackedtexcoords.h
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#ifndef XPACKEDTEXCOORDS_H
|
||||||
|
#define XPACKEDTEXCOORDS_H
|
||||||
|
|
||||||
|
#include "xasset.h"
|
||||||
|
|
||||||
|
class XPackedTexCoords : public XAsset
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit XPackedTexCoords();
|
||||||
|
|
||||||
|
void ParseData(QDataStream *aStream) override;
|
||||||
|
void Clear() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
quint32 mPacked;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // XPACKEDTEXCOORDS_H
|
||||||
Loading…
x
Reference in New Issue
Block a user