Refactor: Implement default destructor for XAnimDeltaPart
This commit implements a default destructor for the `XAnimDeltaPart` class, ensuring proper resource cleanup and adhering to best practices. The destructor is now implicitly generated, simplifying the codebase.
This commit is contained in:
parent
2799108c7d
commit
e40bee38af
@ -9,9 +9,9 @@ class XAnimDeltaPart : public XAsset
|
||||
{
|
||||
public:
|
||||
explicit XAnimDeltaPart();
|
||||
~XAnimDeltaPart();
|
||||
~XAnimDeltaPart() = default;
|
||||
|
||||
void ParseData(QDataStream *aStream) override;
|
||||
void ParseData(XDataStream *aStream) override;
|
||||
void Clear() override;
|
||||
|
||||
const XAnimPartTrans& GetTrans() const;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user