aboutsummaryrefslogtreecommitdiff
path: root/server/src/game.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-08 17:19:25 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-08 17:19:25 +0200
commit90f42ec7a3f28fb3a87c233a81e8f65de832983e (patch)
treedba1334af5bb711555add7159874d1eabd89a4db /server/src/game.rs
parent70bb8744cd742dc6c8a71ab174e4a1b058c7bec8 (diff)
downloadhurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar
hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar.bz2
hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar.zst
move glam dep to protocol crate
Diffstat (limited to 'server/src/game.rs')
-rw-r--r--server/src/game.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/game.rs b/server/src/game.rs
index daf08ad3..74bc9d45 100644
--- a/server/src/game.rs
+++ b/server/src/game.rs
@@ -22,8 +22,8 @@ use crate::{
interaction::{interact, tick_slot, InteractEffect, TickEffect},
};
use anyhow::{anyhow, bail, Result};
-use glam::{IVec2, Vec2};
use hurrycurry_protocol::{
+ glam::{IVec2, Vec2},
ClientGamedata, ItemIndex, ItemLocation, Message, PacketC, PacketS, PlayerID, RecipeIndex,
TileIndex,
};