| 471 | } |
| 472 | |
| 473 | const char *IGameController::GetTeamName(int Team) |
| 474 | { |
| 475 | switch(Team) |
| 476 | { |
| 477 | case TEAM_SPECTATORS: |
| 478 | return "spectators"; |
| 479 | case TEAM_GAME: |
| 480 | return "game"; |
| 481 | default: |
| 482 | dbg_assert_failed("Invalid Team: %d", Team); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | void IGameController::SetGamePaused(bool Paused) |
| 487 | { |
no outgoing calls
no test coverage detected