Skip to main content

buttery_engine/
object.rs

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