blob: 374647112510131c615b55a83f3cc4c641e1dc62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/// 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,
}
|