Updated libs/xassets/xfxeffectdef.h
This commit is contained in:
parent
4e1c18fff2
commit
d075ad4c24
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