diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-20 14:50:39 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-20 14:50:39 +0100 |
commit | d4c9a59ed41c11bf3edccc37d531da46e4fcd218 (patch) | |
tree | 620e0cb9dd59b2b55682f84c0362723fba01a369 /client/src/main.rs | |
parent | d39a7d62e7bdc63b2055ad93bf511cdd1e40e69d (diff) | |
download | twclient-d4c9a59ed41c11bf3edccc37d531da46e4fcd218.tar twclient-d4c9a59ed41c11bf3edccc37d531da46e4fcd218.tar.bz2 twclient-d4c9a59ed41c11bf3edccc37d531da46e4fcd218.tar.zst |
can render map
Diffstat (limited to 'client/src/main.rs')
-rw-r--r-- | client/src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/main.rs b/client/src/main.rs index 8373db9..5a52620 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -6,11 +6,12 @@ use winit::event_loop::EventLoop; pub mod client; pub mod renderer; pub mod window; +pub mod skin_manager; fn main() -> Result<()> { env_logger::init_from_env("LOG"); - Client::new()?; + // Client::new()?; let evloop = EventLoop::new()?; evloop.run_app(&mut WindowState::new())?; |