| 21 | pub(crate) fn find(&self, name: &str) -> Option<&HashMap<String, Duration>> { |
| 22 | self.voice_length.get(name) |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | fn load_voice() -> VoiceLength { |
| 27 | let mut voice_length = HashMap::new(); |
| 28 | for char in &ENGINE_CONFIG.character_name_list() { |
nothing calls this directly
no outgoing calls
no test coverage detected