From 0e48faf7a3e45468e8513c8c997f7f543849ddd0 Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:31:45 +0000 Subject: [PATCH] Updated libs/xassets/xfxspawndefoneshot.h --- libs/xassets/xfxspawndefoneshot.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 libs/xassets/xfxspawndefoneshot.h diff --git a/libs/xassets/xfxspawndefoneshot.h b/libs/xassets/xfxspawndefoneshot.h new file mode 100644 index 0000000..1192b4e --- /dev/null +++ b/libs/xassets/xfxspawndefoneshot.h @@ -0,0 +1,20 @@ +#ifndef XFXSPAWNDEFONESHOT_H +#define XFXSPAWNDEFONESHOT_H + +#include "xasset.h" +#include "xfxintrange.h" + +class XFxSpawnDefOneShot : public XAsset +{ +public: + explicit XFxSpawnDefOneShot(); + ~XFxSpawnDefOneShot(); + + void Clear() override; + void ParseData(QDataStream *aStream) override; + +private: + XFxIntRange mCount; +}; + +#endif // XFXSPAWNDEFONESHOT_H