diff options
Diffstat (limited to 'light-client/src/main.rs')
-rw-r--r-- | light-client/src/main.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/light-client/src/main.rs b/light-client/src/main.rs index 03c2fd76..85254ef4 100644 --- a/light-client/src/main.rs +++ b/light-client/src/main.rs @@ -1,3 +1,4 @@ +use network::Network; /* Hurry Curry! - a game about cooking Copyright 2024 metamuffin @@ -24,8 +25,11 @@ use sdl2::{ }; pub mod network; +pub mod game; fn main() { + let net = Network::connect("ws://127.0.0.1:27032/"); + let sdl_context = sdl2::init().unwrap(); let video_subsystem = sdl_context.video().unwrap(); let _image_context = sdl2::image::init(InitFlag::WEBP).unwrap(); |