metaforce/Runtime/Character/CEffectComponent.hpp

26 lines
455 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CEFFECTCOMPONENT_HPP__
#define __URDE_CEFFECTCOMPONENT_HPP__
2016-04-10 21:22:59 +00:00
#include "IOStreams.hpp"
2016-04-11 07:10:28 +00:00
#include "RetroTypes.hpp"
2016-04-10 21:22:59 +00:00
namespace urde
{
class CEffectComponent
{
std::string x0_name;
SObjectTag x10_tag;
std::string x18_boneName;
float x28_;
u32 x2c_;
u32 x30_;
static SObjectTag GetSObjectTagFromStream(CInputStream& in);
public:
CEffectComponent(CInputStream& in);
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CEFFECTCOMPONENT_HPP__