| 679 | } |
| 680 | |
| 681 | int CGameTeams::GetStartTime(CPlayer *Player) |
| 682 | { |
| 683 | if(!Player) |
| 684 | return 0; |
| 685 | |
| 686 | CCharacter *pChar = Player->GetCharacter(); |
| 687 | if(pChar) |
| 688 | return pChar->m_StartTime; |
| 689 | return 0; |
| 690 | } |
| 691 | |
| 692 | void CGameTeams::SetStartTime(CPlayer *Player, int StartTime) |
| 693 | { |
nothing calls this directly
no test coverage detected