[][src]Struct doryen_rs::AppOptions

pub struct AppOptions {
    pub console_width: u32,
    pub console_height: u32,
    pub screen_width: u32,
    pub screen_height: u32,
    pub window_title: String,
    pub font_path: String,
    pub vsync: bool,
    pub fullscreen: bool,
    pub show_cursor: bool,
    pub resizable: bool,
}

Fields

console_width: u32

the console width in characters

console_height: u32

the console height in characters

screen_width: u32

the game window width in pixels

screen_height: u32

the game window height in pixels

window_title: String

the title of the game window (only in native mode)

font_path: String

the font to use. See DoryenApi::set_font_path

vsync: bool

whether framerate are limited by the screen frequency. On web platforms, this parameter is ignored and vsync is always enabled.

fullscreen: bool

Native only. Might not work on every platforms.

show_cursor: bool

Whether the mouse cursor should be visible in the game window.

resizable: bool

Whether the game window can be resized

Auto Trait Implementations

impl Send for AppOptions

impl Sync for AppOptions

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Downcast for T where
    T: Any