From ebd8f440ae5a2d131cd4e6c064b2d97209cf0858 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 8 Aug 2026 15:32:37 +0800 Subject: refactor: rename CHMovementPlugins to CHMovementPlugin --- plugins/movement/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/movement/src/lib.rs') diff --git a/plugins/movement/src/lib.rs b/plugins/movement/src/lib.rs index d279d3b..626bb5a 100644 --- a/plugins/movement/src/lib.rs +++ b/plugins/movement/src/lib.rs @@ -28,9 +28,9 @@ import!(reducer); /// Cigarette Hacker movement plugin /// /// Used to describe the movement of characters in the game -pub struct CHMovementPlugins; +pub struct CHMovementPlugin; -impl Plugin for CHMovementPlugins { +impl Plugin for CHMovementPlugin { fn build(&self, app: &mut bevy::app::App) { app.add_systems(FixedUpdate, update_movement); } -- cgit