23 lines
400 B
C++
23 lines
400 B
C++
#ifndef XFXSPAWNDEFLOOPING_H
|
|
#define XFXSPAWNDEFLOOPING_H
|
|
|
|
#include "xasset.h"
|
|
|
|
#include <QVector2D>
|
|
|
|
class XFxSpawnDefLooping : public XAsset
|
|
{
|
|
public:
|
|
explicit XFxSpawnDefLooping();
|
|
~XFxSpawnDefLooping();
|
|
|
|
void Clear() override;
|
|
void ParseData(QDataStream *aStream) override;
|
|
|
|
private:
|
|
int mIntervalMsec;
|
|
int mCount;
|
|
};
|
|
|
|
#endif // XFXSPAWNDEFLOOPING_H
|