Fix: Rename QDataStream to XDataStream in ParseData
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.
This commit is contained in:
parent
8f3fa82f64
commit
08cf71cb02
@ -1,9 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef XANIMDELTAPARTQUAT_H
|
#ifndef XANIMDELTAPARTQUAT_H
|
||||||
#define XANIMDELTAPARTQUAT_H
|
#define XANIMDELTAPARTQUAT_H
|
||||||
|
|
||||||
@ -14,8 +8,9 @@ class XAnimDeltaPartQuat : public XAsset
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit XAnimDeltaPartQuat();
|
explicit XAnimDeltaPartQuat();
|
||||||
|
~XAnimDeltaPartQuat() = default;
|
||||||
|
|
||||||
void ParseData(QDataStream *aStream) override;
|
void ParseData(XDataStream *aStream) override;
|
||||||
|
|
||||||
quint32 GetSize() const;
|
quint32 GetSize() const;
|
||||||
void SetSize(quint32 size);
|
void SetSize(quint32 size);
|
||||||
@ -29,8 +24,3 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
#endif // XANIMDELTAPARTQUAT_H
|
#endif // XANIMDELTAPARTQUAT_H
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user