codegame 0.8.0-alpha

CodeGame framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;

#[cfg(target_arch = "wasm32")]
#[path = "web.rs"]
mod _impl;

#[cfg(not(target_arch = "wasm32"))]
#[path = "native.rs"]
mod _impl;

pub use _impl::*;