()
| 42 | |
| 43 | impl VideoContext { |
| 44 | pub(crate) fn default() -> Self { |
| 45 | VideoContext { |
| 46 | video_player: None, |
| 47 | video_timer: None, |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | pub(crate) fn set_video_player(&mut self, player: VideoPlayer) { |
| 52 | self.video_player = Some(player); |
nothing calls this directly
no outgoing calls
no test coverage detected