2017-05-09 13:27:07 +00:00
|
|
|
#ifndef __URDE_CFLAMEINFO_HPP__
|
|
|
|
#define __URDE_CFLAMEINFO_HPP__
|
|
|
|
|
|
|
|
#include "Weapon/CGameProjectile.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
class CFlameInfo
|
|
|
|
{
|
2017-05-10 10:03:29 +00:00
|
|
|
ResId x8_flameFxId;
|
2017-05-09 13:27:07 +00:00
|
|
|
public:
|
|
|
|
CFlameInfo(s32, u32, s32, s32, float, float, float);
|
|
|
|
|
|
|
|
void GetAttributes() const;
|
|
|
|
void GetLength() const;
|
2017-05-10 10:03:29 +00:00
|
|
|
ResId GetFlameFxId() const { return x8_flameFxId; }
|
2017-05-09 13:27:07 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CFLAMEINFO_HPP__
|