vert 0.1.1

The 51th Rust Game Engine, to write the 6th Game in Rust
Documentation
1
2
3
4
5
6
7
8
//! Batteries are also modules, but more for specific usecases.
//! todo!() make batteries addable and removable at runtime by dynamically checking if their dependencies are satisfied.

pub mod fly_cam;
pub use fly_cam::FlyCam;

pub mod graphics_settings_controller;
pub use graphics_settings_controller::GraphicsSettingsController;