diff options
Diffstat (limited to 'server/src/customer/mod.rs')
-rw-r--r-- | server/src/customer/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/customer/mod.rs b/server/src/customer/mod.rs index aeaa7ae1..bf385927 100644 --- a/server/src/customer/mod.rs +++ b/server/src/customer/mod.rs @@ -15,15 +15,15 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -pub mod movement; mod pathfinding; use crate::{data::Gamedata, game::Tile}; use anyhow::{anyhow, Result}; use fake::{faker, Fake}; -use hurrycurry_protocol::{glam::IVec2, DemandIndex, Message, PacketS, PlayerID}; +use hurrycurry_protocol::{ + glam::IVec2, movement::MovementBase, DemandIndex, Message, PacketS, PlayerID, +}; use log::info; -use movement::MovementBase; use pathfinding::{find_path, Path}; use rand::{random, thread_rng}; use std::{ |