1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![deny(rust_2018_idioms)] #![deny(clippy::all)] #![deny(clippy::nursery)] pub mod camera; mod game; pub mod model; pub mod render; pub mod scene; pub mod texture; mod window; pub use game::Game; pub use game::start_engine;