feature/test #9
27
libs/xassets/xfxeffectdef.h
Normal file
27
libs/xassets/xfxeffectdef.h
Normal file
@ -0,0 +1,27 @@
|
||||
#ifndef XFXEFFECTDEF_H
|
||||
#define XFXEFFECTDEF_H
|
||||
|
||||
#include "xasset.h"
|
||||
#include "xfxelemdef.h"
|
||||
|
||||
class XFxEffectDef : public XAsset
|
||||
{
|
||||
public:
|
||||
explicit XFxEffectDef();
|
||||
~XFxEffectDef();
|
||||
|
||||
void Clear() override;
|
||||
void ParseData(QDataStream *aStream) override;
|
||||
|
||||
private:
|
||||
QString mName;
|
||||
int mFlags;
|
||||
int mTotalSize;
|
||||
int mMsecLoopingLife;
|
||||
int mElemDefCountLooping;
|
||||
int mElemDefCountOneShot;
|
||||
int mElemDefCountEmission;
|
||||
QVector<XFxElemDef> mElemDefs;
|
||||
};
|
||||
|
||||
#endif // XFXEFFECTDEF_H
|
||||
Loading…
x
Reference in New Issue
Block a user