diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-08 17:19:25 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-08 17:19:25 +0200 |
commit | 90f42ec7a3f28fb3a87c233a81e8f65de832983e (patch) | |
tree | dba1334af5bb711555add7159874d1eabd89a4db /server/src/customer/movement.rs | |
parent | 70bb8744cd742dc6c8a71ab174e4a1b058c7bec8 (diff) | |
download | hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar.bz2 hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar.zst |
move glam dep to protocol crate
Diffstat (limited to 'server/src/customer/movement.rs')
-rw-r--r-- | server/src/customer/movement.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/src/customer/movement.rs b/server/src/customer/movement.rs index 4da76de7..34ed5b16 100644 --- a/server/src/customer/movement.rs +++ b/server/src/customer/movement.rs @@ -16,8 +16,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -use glam::{IVec2, Vec2}; -use hurrycurry_protocol::PacketS; +use hurrycurry_protocol::{glam::{IVec2, Vec2}, PacketS}; use std::collections::HashSet; const PLAYER_SIZE: f32 = 0.4; |