blob: 89ec0a0c55d17af6485e0c98e4e24805d3977572 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/// 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,
},
}
|