15 lines
256 B
Rust
15 lines
256 B
Rust
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(())
|
|
}
|
|
}
|