void CIVPad::GetLastClientControlState(CControlState& controlState)
{
#ifdef EXT_LOG
	CLogFile::Printf(__FUNCSIG__);
#endif
	if(m_pPad)
		ToControlState(controlState, false);
}
Exemple #2
0
void CIVPad::GetLastControlState(CControls& controlState)
{
	if(m_pPad)
		ToControlState(controlState, false);
}
Exemple #3
0
void CIVPad::GetCurrentControlState(CControls& controlState)
{
	if(m_pPad)
		ToControlState(controlState, true);
}