metaforce/Runtime/MP1/World/CActorContraption.hpp

28 lines
744 B
C++
Raw Normal View History

2017-02-03 23:32:15 +00:00
#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?!?!?!? */
TToken<CGenDescription> x300_;
CDamageInfo x30c_;
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);
2017-05-07 06:55:01 +00:00
void Accept(IVisitor &visitor);
2017-02-03 23:32:15 +00:00
};
}
}
#endif // __URDE_MP1_CACTORCONTRAPTION_HPP__