| 7 | use std::{fs, path::Path, rc::Rc}; |
| 8 | |
| 9 | #[derive(Serialize, Deserialize, Debug, Clone)] |
| 10 | pub(crate) struct SaveData { |
| 11 | pub(crate) script: String, |
| 12 | pub(crate) block_index: usize, |
| 13 | pub(crate) explain: String, |
| 14 | pub(crate) image_path: String, |
| 15 | } |
| 16 | |
| 17 | #[derive(Debug, Deserialize, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected