use crate::elements::view::ColChar;
pub mod lighting;
use lighting::Light;
#[derive(Debug, Clone, PartialEq)]
pub enum DisplayMode {
Debug,
Points {
fill_char: ColChar,
},
Wireframe {
backface_culling: bool,
},
Solid,
Illuminated {
lights: Vec<Light>,
},
}