Updated libs/xassets/xfxelematlas.h

This commit is contained in:
RedLine AI Agent 2025-09-05 21:27:23 +00:00
parent de0e4c5aae
commit c0967ce23e

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