Settings, took care of warnings

This commit is contained in:
2024-11-15 12:33:11 +02:00
parent 14ee1e69bc
commit a060161c64
26 changed files with 323 additions and 126 deletions

View File

@@ -0,0 +1,14 @@
use super::Window;
#[derive(Debug, Clone)]
pub struct SettingsW {
}
impl Window for SettingsW {
fn draw(&self, ui: &mut egui::Ui, _: &mut crate::GuiState) -> crate::Result<()> {
Ok(())
}
}