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
12
13
14
mod input;
#[allow(clippy::all)]
mod window;

pub use input::*;
pub use window::WindowConfig;
#[allow(unused_imports)]
pub(crate) use window::{
    abort,
    input,
    input_mut,
    raw,
    Window,
};