diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-11 00:22:49 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-11 00:30:43 +0200 |
commit | f4499b7a0e808d84157e6148afef4f844a7007cf (patch) | |
tree | 354d970af16a4b3d6217575d259cf1afc0faf291 /pixel-client/src/game.rs | |
parent | 0f6a824cb4c6d36dda485a939d9c640ec234d802 (diff) | |
download | hurrycurry-f4499b7a0e808d84157e6148afef4f844a7007cf.tar hurrycurry-f4499b7a0e808d84157e6148afef4f844a7007cf.tar.bz2 hurrycurry-f4499b7a0e808d84157e6148afef4f844a7007cf.tar.zst |
factor out client network code to client-lib
Diffstat (limited to 'pixel-client/src/game.rs')
-rw-r--r-- | pixel-client/src/game.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pixel-client/src/game.rs b/pixel-client/src/game.rs index fb9df21c..d4f1e4e4 100644 --- a/pixel-client/src/game.rs +++ b/pixel-client/src/game.rs @@ -17,7 +17,6 @@ */ use crate::{ helper::InterpolateExt, - network::Network, render::{ misc::MiscTextures, sprite::{Sprite, SpriteDraw}, @@ -26,6 +25,7 @@ use crate::{ tilemap::Tilemap, State, }; +use hurrycurry_client_lib::network::sync::Network; use hurrycurry_protocol::{ glam::{IVec2, Vec2}, movement::MovementBase, |