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 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 79b464e..4906590 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,6 +8,6 @@ use bevy::prelude::*; fn main() { let mut app = App::new(); app.add_plugins(DefaultPlugins); - app.add_plugins(ch_movement::CHMovementPlugins); + app.add_plugins(ch_movement::CHMovementPlugin); app.run(); } -- cgit