diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-08 00:02:42 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-08 00:02:42 +0100 |
commit | ffca93acce5da9fa8cd1eef329b4399cfc6eace6 (patch) | |
tree | 065b46420ebd4fe622cb6ee869749973a26054d2 /client/src/main.rs | |
parent | 7e06efee8b33fb8619aa5e50afc8728fd330f39d (diff) | |
download | weareserver-ffca93acce5da9fa8cd1eef329b4399cfc6eace6.tar weareserver-ffca93acce5da9fa8cd1eef329b4399cfc6eace6.tar.bz2 weareserver-ffca93acce5da9fa8cd1eef329b4399cfc6eace6.tar.zst |
fix client net
Diffstat (limited to 'client/src/main.rs')
-rw-r--r-- | client/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/main.rs b/client/src/main.rs index 8cf6658..40c6e3e 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -15,6 +15,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ #![feature(iter_array_chunks)] +pub mod camera; pub mod download; pub mod network; pub mod renderer; @@ -22,7 +23,6 @@ pub mod scene_prepare; pub mod scene_render; pub mod state; pub mod window; -pub mod camera; // pub mod ui; use anyhow::Result; @@ -33,7 +33,7 @@ use std::{ io::Write, net::{SocketAddr, TcpStream}, }; -use weareshared::packets::{Packet, ReadWrite}; +use weareshared::{helper::ReadWrite, packets::Packet}; use window::WindowState; use winit::event_loop::EventLoop; |