diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-19 20:21:27 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-19 20:21:27 +0200 |
| commit | 231a5ce21fcee9195fcc504ee672e4464d627c47 (patch) | |
| tree | 5d26373c2dbdaa3a4c7dfb6d2dc4e0fb63ca47a1 /server/bot/src/main.rs | |
| parent | 239f139e7cdc2ee9f2658a8038d2870293e20aa4 (diff) | |
| download | hurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar hurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar.bz2 hurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar.zst | |
Rename client-lib crate to game-core
Diffstat (limited to 'server/bot/src/main.rs')
| -rw-r--r-- | server/bot/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/bot/src/main.rs b/server/bot/src/main.rs index 22dc2e3f..2fbf274f 100644 --- a/server/bot/src/main.rs +++ b/server/bot/src/main.rs @@ -18,7 +18,7 @@ use anyhow::Result; use clap::Parser; use hurrycurry_bot::{BotAlgo, BotInput, algos::ALGO_CONSTRUCTORS}; -use hurrycurry_client_lib::{Game, network::sync::Network}; +use hurrycurry_game_core::{Game, network::sync::Network}; use hurrycurry_protocol::{Character, Hand, ItemLocation, PacketC, PacketS, PlayerClass, PlayerID}; use log::warn; use std::{thread::sleep, time::Duration}; |