diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-06 14:28:02 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-06 14:28:02 +0100 |
commit | 814cc1cb01692aa934a40636c9226ff7bb911266 (patch) | |
tree | 47a50a5dc1861ace4bc1854a9156618b70df3847 /client/src/main.rs | |
parent | c2ee65a83838a0ce13402e2c4634bae409d55071 (diff) | |
download | weareserver-814cc1cb01692aa934a40636c9226ff7bb911266.tar weareserver-814cc1cb01692aa934a40636c9226ff7bb911266.tar.bz2 weareserver-814cc1cb01692aa934a40636c9226ff7bb911266.tar.zst |
new proto
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 b90d26b..e1f556f 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -1,9 +1,10 @@ pub mod download; pub mod network; -pub mod part; +pub mod scene_render; pub mod renderer; pub mod state; pub mod window; +pub mod scene_prepare; use anyhow::Result; use clap::Parser; |