diff --git a/src/actor.rs b/src/actor.rs index 51d4ebe..be5e7eb 100644 --- a/src/actor.rs +++ b/src/actor.rs @@ -45,7 +45,6 @@ pub struct VehicleEnterExitEvent { pub struct Actor { pub id: String, pub name: Option, - pub m: f32, // mass pub camdistance: f32, } impl Default for Actor { @@ -53,7 +52,6 @@ impl Default for Actor { Self { id: "".to_string(), name: None, - m: 100.0, camdistance: 15.0, } }