From 340aa47c4652fe2f0ec5b0e4f293cfff407a0e6c Mon Sep 17 00:00:00 2001 From: metamuffin Date: Mon, 15 Jul 2024 15:00:27 +0200 Subject: add texture import/export system for light client --- light-client/src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'light-client/src/main.rs') 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(); -- cgit v1.2.3-70-g09d2