use crate::math::Point3;
#[derive(Debug, Clone)]
pub struct Prop {
pub name: String,
pub position: Point3<f64>,
}
pub struct PropTracker {
#[allow(dead_code)]
props: Vec<Prop>,
}
impl PropTracker {
#[must_use]
pub fn new() -> Self {
Self { props: Vec::new() }
}
}
impl Default for PropTracker {
fn default() -> Self {
Self::new()
}
}