2025-08-17 13:14:17 -04:00
|
|
|
#ifndef XANIMNOTIFYINFO_H
|
|
|
|
|
#define XANIMNOTIFYINFO_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
|
|
|
|
|
class XAnimNotifyInfo : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit XAnimNotifyInfo();
|
2025-09-10 21:55:57 -04:00
|
|
|
~XAnimNotifyInfo() = default;
|
2025-08-17 13:14:17 -04:00
|
|
|
|
2025-09-10 21:55:57 -04:00
|
|
|
void ParseData(XDataStream *aStream) override;
|
2025-09-05 18:35:17 -04:00
|
|
|
void Clear() override;
|
2025-08-17 13:14:17 -04:00
|
|
|
|
|
|
|
|
private:
|
2025-09-07 12:36:08 -04:00
|
|
|
quint32 mName;
|
2025-09-05 18:35:17 -04:00
|
|
|
float mTime;
|
2025-08-17 13:14:17 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XANIMNOTIFYINFO_H
|