diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-15 15:30:51 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-15 15:30:51 +0200 |
commit | e04589e8b766882375a30c00fb715687a7cc9821 (patch) | |
tree | ad7a05fbe76b3271a0a674795e66b88e6c6c2cbb /light-client/src | |
parent | 23c43903e65bcd03f5fa97874fa3cee74afda33a (diff) | |
download | hurrycurry-e04589e8b766882375a30c00fb715687a7cc9821.tar hurrycurry-e04589e8b766882375a30c00fb715687a7cc9821.tar.bz2 hurrycurry-e04589e8b766882375a30c00fb715687a7cc9821.tar.zst |
atlas packing
Diffstat (limited to 'light-client/src')
-rw-r--r-- | light-client/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/light-client/src/main.rs b/light-client/src/main.rs index 85254ef4..cb7e6caf 100644 --- a/light-client/src/main.rs +++ b/light-client/src/main.rs @@ -1,4 +1,3 @@ -use network::Network; /* Hurry Curry! - a game about cooking Copyright 2024 metamuffin @@ -16,6 +15,7 @@ use network::Network; along with this program. If not, see <https://www.gnu.org/licenses/>. */ +use network::Network; use sdl2::{ event::Event, image::InitFlag, @@ -24,8 +24,8 @@ use sdl2::{ render::TextureAccess, }; -pub mod network; pub mod game; +pub mod network; fn main() { let net = Network::connect("ws://127.0.0.1:27032/"); |