feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit 0ec4548a6b - Show all commits

View File

@ -0,0 +1,22 @@
#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