From 38922d06385fc7eed43e63c86800d3c30c73b73e Mon Sep 17 00:00:00 2001 From: Arjo Chakravarty Date: Tue, 11 Apr 2023 09:20:48 +0800 Subject: [PATCH] Remove SimulationState struct (#119) * Remove SimulationState struct This struct is currently unused. It is a vestige from an earlier time. Signed-off-by: Arjo Chakravarty --- rmf_site_editor/src/lib.rs | 1 - rmf_site_editor/src/simulation_state.rs | 4 ---- 2 files changed, 5 deletions(-) delete mode 100644 rmf_site_editor/src/simulation_state.rs diff --git a/rmf_site_editor/src/lib.rs b/rmf_site_editor/src/lib.rs index bd426b84..3b406af4 100644 --- a/rmf_site_editor/src/lib.rs +++ b/rmf_site_editor/src/lib.rs @@ -37,7 +37,6 @@ mod site; // mod warehouse_generator; mod interaction; -mod simulation_state; mod site_asset_io; use aabb::AabbUpdatePlugin; diff --git a/rmf_site_editor/src/simulation_state.rs b/rmf_site_editor/src/simulation_state.rs deleted file mode 100644 index eb6e3b09..00000000 --- a/rmf_site_editor/src/simulation_state.rs +++ /dev/null @@ -1,4 +0,0 @@ -#[derive(Default)] -pub struct SimulationState { - pub paused: bool, -}