aboutsummaryrefslogtreecommitdiff
path: root/server/examples/client.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-08 17:16:06 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-08 17:16:06 +0200
commit70bb8744cd742dc6c8a71ab174e4a1b058c7bec8 (patch)
tree78c5a190856f1c6281e8773a05408ede02a13947 /server/examples/client.rs
parenta1921104e13c9cf39439ee424d54f7cece67fc5b (diff)
downloadhurrycurry-70bb8744cd742dc6c8a71ab174e4a1b058c7bec8.tar
hurrycurry-70bb8744cd742dc6c8a71ab174e4a1b058c7bec8.tar.bz2
hurrycurry-70bb8744cd742dc6c8a71ab174e4a1b058c7bec8.tar.zst
split off protocol into its own crate
Diffstat (limited to 'server/examples/client.rs')
-rw-r--r--server/examples/client.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/examples/client.rs b/server/examples/client.rs
index 487c9738..80ba8ffa 100644
--- a/server/examples/client.rs
+++ b/server/examples/client.rs
@@ -22,7 +22,7 @@ use std::{
};
use glam::Vec2;
-use hurrycurry_server::protocol::{PacketC, PacketS};
+use hurrycurry_protocol::{PacketC, PacketS};
fn main() {
let mut sock = TcpStream::connect("127.0.0.1:27031").unwrap();