()
| 22 | |
| 23 | impl UserConfig { |
| 24 | fn default() -> Self { |
| 25 | UserConfig { |
| 26 | auto: AutoConfig::default(), |
| 27 | text: TextConfig::default(), |
| 28 | volume: VolumeConfig::default(), |
| 29 | character_volume: CharacterVolumeConfig::default_from_engine(), |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | pub(crate) fn delay(&self) -> f32 { |
| 34 | self.auto.delay() |
nothing calls this directly
no outgoing calls
no test coverage detected