The `ParseData` method was incorrectly using `QDataStream` instead of `XDataStream`. This commit changes the type from `QDataStream` to `XDataStream` to align with the project's data stream implementation.
27 lines
561 B
C++
27 lines
561 B
C++
#ifndef XANIMDELTAPARTQUAT_H
|
|
#define XANIMDELTAPARTQUAT_H
|
|
|
|
#include "xasset.h"
|
|
#include "xanimdeltapartquatdata.h"
|
|
|
|
class XAnimDeltaPartQuat : public XAsset
|
|
{
|
|
public:
|
|
explicit XAnimDeltaPartQuat();
|
|
~XAnimDeltaPartQuat() = default;
|
|
|
|
void ParseData(XDataStream *aStream) override;
|
|
|
|
quint32 GetSize() const;
|
|
void SetSize(quint32 size);
|
|
|
|
const XAnimDeltaPartQuatData& GetData() const;
|
|
void SetData(const XAnimDeltaPartQuatData& data);
|
|
|
|
private:
|
|
quint32 mSize = 0;
|
|
XAnimDeltaPartQuatData mData;
|
|
};
|
|
|
|
#endif // XANIMDELTAPARTQUAT_H
|