mirror of https://github.com/AxioDL/metaforce.git
15 lines
471 B
C++
15 lines
471 B
C++
#include "CScriptDebugCameraWaypoint.hpp"
|
|
#include "CActorParameters.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CScriptDebugCameraWaypoint::CScriptDebugCameraWaypoint(TUniqueId uid, std::string_view name, const CEntityInfo& info,
|
|
const zeus::CTransform& xf, u32 w1)
|
|
: CActor(uid, true, name, info, xf, CModelData::CModelDataNull(), {EMaterialTypes::NoStepLogic},
|
|
CActorParameters::None(), kInvalidUniqueId), xe8_w1(w1)
|
|
{
|
|
}
|
|
|
|
}
|