mirror of https://github.com/AxioDL/metaforce.git
31 lines
893 B
C++
31 lines
893 B
C++
#ifndef __URDE_MP1_CACTORCONTRAPTION_HPP__
|
|
#define __URDE_MP1_CACTORCONTRAPTION_HPP__
|
|
|
|
#include "World/CScriptActor.hpp"
|
|
#include "World/CDamageInfo.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
namespace MP1
|
|
{
|
|
class CActorContraption : public CScriptActor
|
|
{
|
|
/* AKA Why Zoid?!?!?!? */
|
|
std::vector<std::pair<TUniqueId, std::string>> x2ec_children;
|
|
TToken<CGenDescription> x300_flameThrowerGen;
|
|
ResId x308_partId;
|
|
CDamageInfo x30c_dInfo;
|
|
public:
|
|
CActorContraption(TUniqueId, const std::string&, const CEntityInfo&, const zeus::CTransform&, CModelData&&,
|
|
const zeus::CAABox&, const CMaterialList&, float, float, const CHealthInfo&,
|
|
const CDamageVulnerability&, const CActorParameters&, ResId, const CDamageInfo&, bool);
|
|
|
|
void Accept(IVisitor &visitor);
|
|
|
|
void Think(float, CStateManager &);
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // __URDE_MP1_CACTORCONTRAPTION_HPP__
|