iced-yoda/native/src/window/event.rs
2020-01-10 01:28:45 +01:00

12 lines
283 B
Rust

/// A window-related event.
#[derive(PartialEq, Clone, Copy, Debug)]
pub enum Event {
/// A window was resized
Resized {
/// The new width of the window (in units)
width: u32,
/// The new height of the window (in units)
height: u32,
},
}