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