split up more files

This commit is contained in:
grimsace
2026-05-18 10:16:47 -05:00
parent 49ebe351d6
commit 001d583f27
21 changed files with 6324 additions and 6255 deletions
+5 -5
View File
@@ -1,14 +1,14 @@
use rfd::FileDialog;
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 rfd::FileDialog;
use serde::{Deserialize, Serialize};
use std::fs;
use std::path::PathBuf;
use crate::layout::DungeonLayout;
use crate::ui::UiSettings;