| 3 | |
| 4 | #[derive(Debug, Deserialize, Serialize)] |
| 5 | pub(crate) struct InitializeConfig { |
| 6 | pub(crate) script_path: String, |
| 7 | pub(crate) background_path: String, |
| 8 | pub(crate) cg_path: String, |
| 9 | pub(crate) voice_path: String, |
| 10 | pub(crate) bgm_path: String, |
| 11 | pub(crate) figure_path: String, |
| 12 | pub(crate) video_path: String, |
| 13 | pub(crate) video_extension: String, |
| 14 | pub(crate) save_path: String, |
| 15 | } |
| 16 | |
| 17 | #[derive(Debug, Deserialize, Serialize)] |
| 18 | pub(crate) struct Character(HashMap<String, String>); |
nothing calls this directly
no outgoing calls
no test coverage detected