diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-10 20:06:01 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-10 20:06:01 +0100 |
commit | 3ac853862b5965c1ebfb10b12fb35cf5c671232f (patch) | |
tree | 4aaa6684d21ec7eb4dbae00878111989131aedba /shared/src/lib.rs | |
parent | 2746fce8d943325f34b188a67b7039453d8484d1 (diff) | |
download | weareserver-3ac853862b5965c1ebfb10b12fb35cf5c671232f.tar weareserver-3ac853862b5965c1ebfb10b12fb35cf5c671232f.tar.bz2 weareserver-3ac853862b5965c1ebfb10b12fb35cf5c671232f.tar.zst |
physics extension and fixes
Diffstat (limited to 'shared/src/lib.rs')
-rw-r--r-- | shared/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/src/lib.rs b/shared/src/lib.rs index 951683c..11ed2ce 100644 --- a/shared/src/lib.rs +++ b/shared/src/lib.rs @@ -16,10 +16,10 @@ */ #![feature(iter_array_chunks, array_try_map)] +pub mod helper; pub mod packets; pub mod resources; pub mod store; pub mod tree; -pub mod helper; -pub use glam::{Affine3A, Mat3A, Vec3A, vec3a}; +pub use glam::{Affine3A, Mat3A, Vec2, Vec3A, vec2, vec3a}; |