| 3 | use std::{cell::RefCell, fs::File, io::BufReader}; |
| 4 | |
| 5 | pub(crate) struct MediaPlayer { |
| 6 | bgm_player: Player, |
| 7 | voice_player: Player, |
| 8 | } |
| 9 | |
| 10 | impl MediaPlayer { |
| 11 | pub(crate) fn new() -> Result<Self, MediaError> { |
nothing calls this directly
no outgoing calls
no test coverage detected