1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! This module contains everything related to camera and projection. Usually you use the module to
//! implement you own camera that determines how everything in your app will be rendered

#[allow(clippy::module_inception)]
mod camera;
mod debug_camera;

#[doc(inline)]
pub use self::camera::Camera;

#[doc(inline)]
pub use self::debug_camera::DebugCamera;