mirror of https://github.com/AxioDL/metaforce.git
17 lines
549 B
C++
17 lines
549 B
C++
#include "CScriptCameraHintTrigger.hpp"
|
|
#include "CActorParameters.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CScriptCameraHintTrigger::CScriptCameraHintTrigger(TUniqueId uid, bool active, const std::string& name, const CEntityInfo& info, const zeus::CVector3f& scale, const zeus::CTransform& xf, bool b2, bool b3)
|
|
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(EMaterialTypes::ThirtyFour), CActorParameters::None(), kInvalidUniqueId)
|
|
, xe8_obb(xf, scale)
|
|
, x124_scale(scale)
|
|
, x130_24_(b2)
|
|
, x130_25_(b3)
|
|
{
|
|
}
|
|
|
|
}
|