crossbow 0.2.3

Cross-Platform build tools and toolkit for games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(all(target_os = "android", feature = "android"))]
pub use ndk_glue;

#[cfg(all(target_os = "android", feature = "android"))]
pub use crossbow_android as android;

#[cfg(all(target_os = "ios", feature = "ios"))]
pub use crossbow_ios as ios;

pub mod error;
mod permission;

pub use permission::*;