lib.rs
1
2
3
4
5
6
7
8
9
//! A game engine from the void 🦑
#![forbid(unsafe_code)]
pub mod linear;
pub mod traits;
pub use linear::{ * };
pub use traits::{ * };
//! A game engine from the void 🦑
#![forbid(unsafe_code)]
pub mod linear;
pub mod traits;
pub use linear::{ * };
pub use traits::{ * };