11 lines
261 B
Rust
11 lines
261 B
Rust
pub enum PlatformEvent {
|
|
/// Emmited when the window should
|
|
RedrawRequested,
|
|
|
|
/// The platform has requested to close the app.
|
|
CloseRequested,
|
|
|
|
/// Platform event loop is about to block and wait for new
|
|
/// new events.
|
|
AboutToWait
|
|
}
|