| 7 | |
| 8 | #[derive(Debug, Deserialize, Serialize)] |
| 9 | pub(crate) struct CharacterVolumeConfig { |
| 10 | #[serde(flatten)] |
| 11 | pub(crate) volumes: HashMap<String, f32>, |
| 12 | } |
| 13 | |
| 14 | impl CharacterVolumeConfig { |
| 15 | pub(crate) fn default_from_engine() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected