XPlor/libs/xassets/xanimnotifyinfo.h

21 lines
345 B
C
Raw Normal View History

2025-08-17 13:14:17 -04:00
#ifndef XANIMNOTIFYINFO_H
#define XANIMNOTIFYINFO_H
#include "xasset.h"
class XAnimNotifyInfo : public XAsset
{
public:
explicit XAnimNotifyInfo();
~XAnimNotifyInfo() = default;
2025-08-17 13:14:17 -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