1pub struct Object { 2 pub position: [f32; 3], 3 pub model_path: String, 4} 5 6impl Object { 7 pub fn update(&mut self) {} 8}