mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 00:27:42 +00:00
CScanDisplay and CScriptMazeNode stubs
This commit is contained in:
24
Runtime/World/CScriptMazeNode.cpp
Normal file
24
Runtime/World/CScriptMazeNode.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#include "CScriptMazeNode.hpp"
|
||||
#include "Character/CModelData.hpp"
|
||||
#include "GameGlobalObjects.hpp"
|
||||
#include "CActorParameters.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CScriptMazeNode::CScriptMazeNode(TUniqueId uid, const std::string& name, const CEntityInfo& info,
|
||||
const zeus::CTransform& xf, bool active, s32 w1, s32 w2, s32 w3,
|
||||
const zeus::CVector3f& vec1, const zeus::CVector3f& vec2, const zeus::CVector3f& vec3)
|
||||
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(), CActorParameters::None(),
|
||||
kInvalidUniqueId),
|
||||
xe8_(w1), xec_(w1), xf0_(w2),
|
||||
x100_(vec1), x110_(vec2), x120_(vec3)
|
||||
{
|
||||
x13c_24_ = true;
|
||||
}
|
||||
|
||||
void CScriptMazeNode::LoadSeeds()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user