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 c0967ce23e - Show all commits

View File

@ -0,0 +1,20 @@
#ifndef XFXELEMVELSTATESAMPLE_H
#define XFXELEMVELSTATESAMPLE_H
#include "xasset.h"
#include "xfxelemvelstateinframe.h"
class XFxElemVelStateSample : public XAsset
{
public:
explicit XFxElemVelStateSample();
~XFxElemVelStateSample();
void Clear() override;
void ParseData(QDataStream *aStream) override;
private:
XFxElemVelStateInFrame mLocal;
XFxElemVelStateInFrame mWorld;
};
#endif // XFXELEMVELSTATESAMPLE_H