blob: fdce8e231476e369a9d00e9017231809e340ab9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/// 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,
/// The application is hidden
Hidden,
}
|