pub trait IsMovable3D {
// Required method
fn move_by(&mut self, x: f64, y: f64, z: f64);
}
Expand description
IsMovable3D is a trait used for types within 3D space which can be moved
pub trait IsMovable3D {
// Required method
fn move_by(&mut self, x: f64, y: f64, z: f64);
}
IsMovable3D is a trait used for types within 3D space which can be moved