mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-24 12:28:21 -05:00
13 lines
295 B
C++
13 lines
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];
|
|
}
|
|
} |