rend3-framework 0.3.0

Simple framework for making applications with the rend3 rendering library.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(target_arch = "wasm32")]
mod wasm;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;

#[cfg(not(target_arch = "wasm32"))]
mod native;
#[cfg(not(target_arch = "wasm32"))]
pub use native::*;