From eec323baf28f1a588f835aa773b77e019f91446d Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 12 Feb 2026 04:42:10 +0800 Subject: Add sheet system with mapping macros and modules --- src/lib.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index cb8fde1..a01e5e4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,12 +20,16 @@ pub mod system { pub use constants::*; } + pub mod asset_system { + pub use asset_system::*; + } + pub mod action_system { pub use action_system::*; } - pub mod asset_system { - pub use asset_system::*; + pub mod sheet_system { + pub use sheet_system::*; } } -- cgit