diff options
author | metamuffin <metamuffin@disroot.org> | 2025-03-27 18:17:34 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-03-27 18:17:34 +0100 |
commit | 40afd6fa42ad937148c6812b8df8efff6c78e4b5 (patch) | |
tree | 09b5200598d9a9d93757745461fe34fbe28e1a81 /shared/src/lib.rs | |
parent | 9f16507564354422b64e437e547d8403b22b70c7 (diff) | |
download | weareserver-40afd6fa42ad937148c6812b8df8efff6c78e4b5.tar weareserver-40afd6fa42ad937148c6812b8df8efff6c78e4b5.tar.bz2 weareserver-40afd6fa42ad937148c6812b8df8efff6c78e4b5.tar.zst |
spatial tree, graphics and some unit tests
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 61828fc..f4a0408 100644 --- a/shared/src/lib.rs +++ b/shared/src/lib.rs @@ -22,12 +22,13 @@ )] #![allow(clippy::unit_arg, clippy::type_complexity)] +pub mod graphics; pub mod helper; +pub mod loader; pub mod packets; pub mod resources; pub mod respack; pub mod store; pub mod tree; -pub mod loader; pub use glam::{Affine3A, Mat3A, Vec2, Vec3A, Vec4, vec2, vec3a, vec4}; |