2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 01:11:20 +00:00
metaforce/Runtime/MP1/CPlayerVisor.cpp
2017-05-21 12:01:04 -04:00

40 lines
541 B
C++

#include "CPlayerVisor.hpp"
namespace urde
{
namespace MP1
{
CPlayerVisor::CPlayerVisor(CStateManager& stateMgr)
{
}
void CPlayerVisor::Update(float dt, const CStateManager& stateMgr)
{
}
void CPlayerVisor::Draw(const CStateManager& stateMgr, const CTargetingManager* tgtManager) const
{
}
void CPlayerVisor::Touch()
{
}
float CPlayerVisor::GetDesiredViewportScaleX(const CStateManager& stateMgr) const
{
return 0.f;
}
float CPlayerVisor::GetDesiredViewportScaleY(const CStateManager& stateMgr) const
{
return 0.f;
}
}
}