Refactor: Implement default destructor for XAnimNotifyInfo
This commit implements a default destructor for the `XAnimNotifyInfo` class.
This commit is contained in:
parent
4480eb83d7
commit
7174f1fe22
@ -7,17 +7,11 @@ class XAnimNotifyInfo : public XAsset
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit XAnimNotifyInfo();
|
explicit XAnimNotifyInfo();
|
||||||
~XAnimNotifyInfo();
|
~XAnimNotifyInfo() = default;
|
||||||
|
|
||||||
void ParseData(QDataStream *aStream) override;
|
void ParseData(XDataStream *aStream) override;
|
||||||
void Clear() override;
|
void Clear() override;
|
||||||
|
|
||||||
quint32 GetName() const;
|
|
||||||
void SetName(quint32 name);
|
|
||||||
|
|
||||||
float GetTime() const;
|
|
||||||
void SetTime(float time);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
quint32 mName;
|
quint32 mName;
|
||||||
float mTime;
|
float mTime;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user