2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 18:31:21 +00:00
metaforce/Runtime/Weapon/CFlameInfo.hpp
Lioncash 06789d1860 General: Normalize several headers' include paths
Normalizes the include paths and makes them consistent. Also adds any
missing includes relevant to the interface.
2019-09-22 20:36:33 -04:00

24 lines
493 B
C++

#pragma once
#include "Runtime/Weapon/CGameProjectile.hpp"
namespace urde {
class CFlameInfo {
friend class CFlameThrower;
s32 x0_;
s32 x4_attributes;
CAssetId x8_flameFxId;
s32 xc_length;
float x10_;
float x18_;
float x1c_;
public:
CFlameInfo(s32, s32, CAssetId, s32, float, float, float);
s32 GetAttributes() const { return x4_attributes; }
s32 GetLength() const { return xc_length; }
CAssetId GetFlameFxId() const { return x8_flameFxId; }
};
} // namespace urde