XPlor/libs/xassets/xanimnotifyinfo.h

36 lines
426 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();
void ParseData(QDataStream *aStream) override;
quint16 GetName() const;
void SetName(quint16 name);
float GetTime() const;
void SetTime(float time);
private:
quint16 mName = 0;
float mTime = 0.0f;
};
#endif // XANIMNOTIFYINFO_H