diff options
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; |