blob: fbc517b45805ea6f7eb213d8bf169e23ace6d45f (
plain)
#![feature(let_else)]
#![feature(nonzero_min_max)]
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
#![allow(clippy::module_name_repetitions)]
pub mod config;
pub mod renderer;
mod vertex;
pub use config::RenderWindowConfig;
pub use renderer::Renderer;
pub(crate) use vertex::Vertex;
|