From 7d655ca6c60b63d6c8e47a060b8628bd7d76c73d Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 5 Apr 2024 23:50:10 +0200 Subject: [PATCH] cleanup --- src/actor.rs | 2 -- 1 file changed, 2 deletions(-) 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, } }