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/interfaces | |
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/interfaces')
-rw-r--r-- | client/src/interfaces/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/interfaces/mod.rs b/client/src/interfaces/mod.rs index 9a68da7..d7e8c7e 100644 --- a/client/src/interfaces/mod.rs +++ b/client/src/interfaces/mod.rs @@ -18,7 +18,7 @@ pub mod prefabindex; pub mod profiler; use crate::{ - download::Downloader, network::Network, scene_prepare::ScenePreparer, ui::UI_POSITION_OFFSET, + download::Downloader, network::Network, render::scene::ScenePreparer, ui::UI_POSITION_OFFSET, }; use egui::{Pos2, Widget}; use prefabindex::PrefabIndexInterface; |