diff options
author | metamuffin <metamuffin@disroot.org> | 2025-03-27 14:38:31 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-03-27 14:38:31 +0100 |
commit | 9f16507564354422b64e437e547d8403b22b70c7 (patch) | |
tree | a2d3fee9be8c626b1832df1fa4d8aa8b6c253b3d /shared/src/lib.rs | |
parent | d48ff95ec3739b8179b0e0f5b07d5c89f8f5b33f (diff) | |
download | weareserver-9f16507564354422b64e437e547d8403b22b70c7.tar weareserver-9f16507564354422b64e437e547d8403b22b70c7.tar.bz2 weareserver-9f16507564354422b64e437e547d8403b22b70c7.tar.zst |
lay a foundation for subresource listings
Diffstat (limited to 'shared/src/lib.rs')
-rw-r--r-- | shared/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/src/lib.rs b/shared/src/lib.rs index c3d8d6b..61828fc 100644 --- a/shared/src/lib.rs +++ b/shared/src/lib.rs @@ -25,8 +25,9 @@ pub mod helper; pub mod packets; pub mod resources; +pub mod respack; pub mod store; pub mod tree; -pub mod respack; +pub mod loader; pub use glam::{Affine3A, Mat3A, Vec2, Vec3A, Vec4, vec2, vec3a, vec4}; |