quicksilver 0.1.0

A simple game framework for 2D games in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(not(target_arch="wasm32"))]
mod desktop;
#[cfg(target_arch="wasm32")]
mod wasm;

#[cfg(not(target_arch="wasm32"))]
pub use self::desktop::*;
#[cfg(target_arch="wasm32")]
pub use self::wasm::*;