aboutsummaryrefslogtreecommitdiff
path: root/client/src/main.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-02-20 14:50:39 +0100
committermetamuffin <metamuffin@disroot.org>2025-02-20 14:50:39 +0100
commitd4c9a59ed41c11bf3edccc37d531da46e4fcd218 (patch)
tree620e0cb9dd59b2b55682f84c0362723fba01a369 /client/src/main.rs
parentd39a7d62e7bdc63b2055ad93bf511cdd1e40e69d (diff)
downloadtwclient-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.rs3
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())?;