added comments to clearify what is in each rust file

This commit is contained in:
grimsace
2026-05-18 09:01:14 -05:00
parent 665a3a3bfa
commit 49ebe351d6
15 changed files with 94 additions and 0 deletions
+6
View File
@@ -3,6 +3,12 @@ use serde::{Deserialize, Serialize};
use std::fs;
use std::path::PathBuf;
/*
* Persistence logic for dungeon state.
* Handles saving and loading the complete dungeon state
* (settings and layout data) to and from disk using JSON.
*/
use crate::layout::DungeonLayout;
use crate::ui::UiSettings;