diff options
Diffstat (limited to 'server/bot/src/algos')
| -rw-r--r-- | server/bot/src/algos/customer.rs | 2 | ||||
| -rw-r--r-- | server/bot/src/algos/dishwasher.rs | 2 | ||||
| -rw-r--r-- | server/bot/src/algos/frank.rs | 2 | ||||
| -rw-r--r-- | server/bot/src/algos/simple.rs | 2 | ||||
| -rw-r--r-- | server/bot/src/algos/test.rs | 2 | ||||
| -rw-r--r-- | server/bot/src/algos/waiter.rs | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/server/bot/src/algos/customer.rs b/server/bot/src/algos/customer.rs index bd757d9e..06dc373c 100644 --- a/server/bot/src/algos/customer.rs +++ b/server/bot/src/algos/customer.rs @@ -22,7 +22,7 @@ use crate::{ pathfinding::{Path, find_path}, random_float, }; -use hurrycurry_client_lib::Game; +use hurrycurry_game_core::Game; use hurrycurry_protocol::{ DemandIndex, Hand, ItemLocation, Message, PacketS, PlayerClass, PlayerID, Score, glam::{IVec2, Vec2}, diff --git a/server/bot/src/algos/dishwasher.rs b/server/bot/src/algos/dishwasher.rs index 94368558..5dbf954f 100644 --- a/server/bot/src/algos/dishwasher.rs +++ b/server/bot/src/algos/dishwasher.rs @@ -17,7 +17,7 @@ */ use super::simple::State; use crate::{BotAlgo, BotInput, algos::simple::Context, pathfinding::Path}; -use hurrycurry_client_lib::Game; +use hurrycurry_game_core::Game; use hurrycurry_protocol::{ItemIndex, PlayerID, glam::IVec2}; #[derive(Default)] diff --git a/server/bot/src/algos/frank.rs b/server/bot/src/algos/frank.rs index c815c75f..3515f96d 100644 --- a/server/bot/src/algos/frank.rs +++ b/server/bot/src/algos/frank.rs @@ -21,7 +21,7 @@ use crate::{ BotAlgo, BotInput, pathfinding::{Path, find_path_to_neighbour}, }; -use hurrycurry_client_lib::Game; +use hurrycurry_game_core::Game; use hurrycurry_protocol::{Message, PacketS, PlayerClass, PlayerID, glam::Vec2}; #[derive(Default)] diff --git a/server/bot/src/algos/simple.rs b/server/bot/src/algos/simple.rs index f8d01b3a..0145cfcb 100644 --- a/server/bot/src/algos/simple.rs +++ b/server/bot/src/algos/simple.rs @@ -19,7 +19,7 @@ use crate::{ BotAlgo, BotInput, pathfinding::{Path, find_path_to_neighbour}, }; -use hurrycurry_client_lib::Game; +use hurrycurry_game_core::Game; use hurrycurry_protocol::{ ItemIndex, Message, PlayerID, Recipe, RecipeIndex, TileIndex, glam::IVec2, }; diff --git a/server/bot/src/algos/test.rs b/server/bot/src/algos/test.rs index 361cf4ea..20abbabd 100644 --- a/server/bot/src/algos/test.rs +++ b/server/bot/src/algos/test.rs @@ -19,7 +19,7 @@ use crate::{ BotAlgo, BotInput, pathfinding::{Path, find_path_to_neighbour}, }; -use hurrycurry_client_lib::Game; +use hurrycurry_game_core::Game; use hurrycurry_protocol::{ItemIndex, Message, PlayerID, glam::IVec2}; use log::info; diff --git a/server/bot/src/algos/waiter.rs b/server/bot/src/algos/waiter.rs index 8fccd34a..9273eb42 100644 --- a/server/bot/src/algos/waiter.rs +++ b/server/bot/src/algos/waiter.rs @@ -17,7 +17,7 @@ */ use super::simple::State; use crate::{BotAlgo, BotInput, algos::simple::Context, pathfinding::Path}; -use hurrycurry_client_lib::Game; +use hurrycurry_game_core::Game; use hurrycurry_protocol::{ItemIndex, PlayerID, glam::IVec2}; use log::debug; |