XPlor/libs/xassets/xdynentityclient.h

23 lines
413 B
C
Raw Permalink Normal View History

2025-09-05 21:24:58 +00:00
#ifndef XDYNENTITYCLIENT_H
#define XDYNENTITYCLIENT_H
#include "xasset.h"
class XDynEntityClient : public XAsset
{
public:
explicit XDynEntityClient();
~XDynEntityClient();
2025-09-10 21:58:26 -04:00
void ParseData(XDataStream *aStream) override;
2025-09-05 21:24:58 +00:00
void Clear() override;
private:
int mPhysObjId;
2025-09-07 12:36:08 -04:00
quint32 mFlags;
quint32 mLightingHandle;
2025-09-05 21:24:58 +00:00
int mHealth;
};
#endif // XDYNENTITYCLIENT_H