/////////////////////////////////////////////////////////////////////
| 50 | |
| 51 | ////////////////////////////////////////////////////////////////////////// |
| 52 | int CScriptObjectSpectator::SetHost(IFunctionHandler *pH) |
| 53 | { |
| 54 | CHECK_PARAMETERS(1); |
| 55 | int host=0; |
| 56 | if(pH->GetParam(1,host)) |
| 57 | { |
| 58 | m_pSpectator->m_eiHost=host; |
| 59 | } |
| 60 | return pH->EndFunction(); |
| 61 | } |
| 62 | |
| 63 | ////////////////////////////////////////////////////////////////////////// |
| 64 | int CScriptObjectSpectator::GetHost(IFunctionHandler *pH) |
nothing calls this directly
no test coverage detected