summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-12 04:42:10 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-12 05:07:50 +0800
commiteec323baf28f1a588f835aa773b77e019f91446d (patch)
treeff186f5c1094374101d58caee1cc7d1b8c72dddc /src
parentce1a5ac5c4c116e28f647549f422f8bdbd94487c (diff)
Add sheet system with mapping macros and modules
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs8
1 files changed, 6 insertions, 2 deletions
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::*;
}
}