adore 0.0.0

Adore: A flexible Rust game dev framework. Bring your own tools for streamlined development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub fn abort() {
    crate::window::abort();
}

pub fn input_mut() -> &'static mut crate::window::Input {
    crate::window::input_mut()
}

pub fn input() -> &'static crate::window::Input {
    crate::window::input()
}