UnleashedRecomp/UnleashedRecomp/api/SWA/System/InputState.inl
2024-10-17 19:16:33 +01:00

13 lines
No EOL
295 B
C++

namespace SWA
{
// TODO: Hedgehog::Base::TSynchronizedPtr<CInputState>
inline CInputState* CInputState::GetInstance()
{
return *ms_pInstance;
}
inline const SPadState& CInputState::GetPadState() const
{
return m_PadStates[m_CurrentPadStateIndex];
}
}