2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 02:27:43 +00:00

CStateManager::InitializeResources() dependencies all in

This commit is contained in:
Jack Andersen
2016-08-14 15:19:04 -10:00
parent 24bfc47d1a
commit fb1ce432aa
25 changed files with 916 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
#include "CBallCamera.hpp"
namespace urde
{
CBallCamera::CBallCamera(TUniqueId uid, TUniqueId id2, const zeus::CTransform& xf,
float a, float b, float c, float d)
: CGameCamera(uid, true, "Ball Camera",
CEntityInfo(kInvalidAreaId, CEntity::NullConnectionList),
xf, a, b, c, d, id2, 0, 0)
{
}
void CBallCamera::ProcessInput(const CFinalInput&, CStateManager& mgr)
{
}
void CBallCamera::Reset(const zeus::CTransform&, CStateManager& mgr)
{
}
}