MCPcopy Create free account
hub / github.com/RustOtomeLab/RustEng / MediaPlayer

Class MediaPlayer

src/media/player.rs:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected