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