From 846c689088d27c52071feff08dffbba8c3c68072 Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:27:31 +0000 Subject: [PATCH] Updated libs/xassets/xfximpacttable.h --- libs/xassets/xfximpacttable.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 libs/xassets/xfximpacttable.h diff --git a/libs/xassets/xfximpacttable.h b/libs/xassets/xfximpacttable.h new file mode 100644 index 0000000..723e5b7 --- /dev/null +++ b/libs/xassets/xfximpacttable.h @@ -0,0 +1,23 @@ +#ifndef XFXIMPACTTABLE_H +#define XFXIMPACTTABLE_H + +#include "xasset.h" +#include "xfximpactentry.h" + +class XFxImpactTable : public XAsset +{ +public: + explicit XFxImpactTable(); + ~XFxImpactTable(); + + void Clear() override; + void ParseData(QDataStream *aStream) override; + +private: + qint32 mNamePtr; + QString mName; + qint32 mTablePtr; + QVector mTable; +}; + +#endif // XFXIMPACTTABLE_H