iced-yoda/src/window/mode.rs

10 lines
260 B
Rust
Raw Normal View History

2020-01-16 04:45:37 +01:00
/// The mode of a window-based application.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Mode {
/// The application appears in its own window.
Windowed,
/// The application takes the whole screen of its current monitor.
Fullscreen,
}