diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-23 22:45:35 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-23 22:45:35 +0100 |
commit | 3344eb2d678f9c5973c8e38083760254b54c20fc (patch) | |
tree | 793678d4230dd012285169ba34005064690c7af0 /client/src/main.rs | |
parent | dd40803458695abcd4100fffb874cc25a71ea758 (diff) | |
download | weareserver-3344eb2d678f9c5973c8e38083760254b54c20fc.tar weareserver-3344eb2d678f9c5973c8e38083760254b54c20fc.tar.bz2 weareserver-3344eb2d678f9c5973c8e38083760254b54c20fc.tar.zst |
split scene_prepare to many files
Diffstat (limited to 'client/src/main.rs')
-rw-r--r-- | client/src/main.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/client/src/main.rs b/client/src/main.rs index e72e3b0..673a71f 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -20,15 +20,13 @@ pub mod audio; pub mod camera; pub mod download; pub mod interfaces; -pub mod meshops; pub mod network; -pub mod renderer; +pub mod render; pub mod scene_prepare; -pub mod scene_render; +pub mod shaders; pub mod state; pub mod ui; pub mod window; -pub mod shaders; use anyhow::Result; use clap::Parser; |