metaforce/Runtime/Weapon/CFlameInfo.hpp

24 lines
493 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2017-05-09 13:27:07 +00:00
#include "Runtime/Weapon/CGameProjectile.hpp"
2017-05-09 13:27:07 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
class CFlameInfo {
2019-04-16 08:00:46 +00:00
friend class CFlameThrower;
2018-12-08 05:30:43 +00:00
s32 x0_;
2019-04-16 08:00:46 +00:00
s32 x4_attributes;
2018-12-08 05:30:43 +00:00
CAssetId x8_flameFxId;
2019-04-16 08:00:46 +00:00
s32 xc_length;
2018-12-08 05:30:43 +00:00
float x10_;
float x18_;
float x1c_;
2017-05-09 13:27:07 +00:00
public:
2018-12-08 05:30:43 +00:00
CFlameInfo(s32, s32, CAssetId, s32, float, float, float);
2017-05-09 13:27:07 +00:00
2019-04-16 08:00:46 +00:00
s32 GetAttributes() const { return x4_attributes; }
s32 GetLength() const { return xc_length; }
2018-12-08 05:30:43 +00:00
CAssetId GetFlameFxId() const { return x8_flameFxId; }
2017-05-09 13:27:07 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde