Early gui impl, basic window management

This commit is contained in:
2024-11-07 15:42:34 +02:00
parent a00486eeaf
commit 4dcd36c3d8
14 changed files with 3905 additions and 24 deletions

View File

@@ -0,0 +1,14 @@
use super::Window;
#[derive(Debug, Default)]
pub struct ErrorW {
}
impl Window for ErrorW {
fn draw(&self, ui: &mut egui::Ui, state: &mut crate::GuiState) -> crate::Result<()> {
ui.label("Hello from other window!");
Ok(())
}
}