diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-21 22:59:01 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-21 22:59:01 +0100 |
commit | a3621790a6f4466daab0f38f5eaf57fe064b2e92 (patch) | |
tree | cb4d6ef53a65abdd87969cbbf6ad4c9a54b54225 /client/src/main.rs | |
parent | 12bf2f3302efc9042f12ca17104928c35700c229 (diff) | |
download | weareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar weareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar.bz2 weareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar.zst |
more work on armature
Diffstat (limited to 'client/src/main.rs')
-rw-r--r-- | client/src/main.rs | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/client/src/main.rs b/client/src/main.rs index cd77266..66bd21f 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -14,12 +14,13 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#![feature(iter_array_chunks)] -#![feature(mpmc_channel)] -#![feature(array_chunks)] -#![feature(new_zeroed_alloc)] +#![feature(iter_array_chunks, mpmc_channel, array_chunks, new_zeroed_alloc)] +pub mod armature; +pub mod audio; pub mod camera; pub mod download; +pub mod interfaces; +pub mod meshops; pub mod network; pub mod renderer; pub mod scene_prepare; @@ -27,9 +28,6 @@ pub mod scene_render; pub mod state; pub mod ui; pub mod window; -pub mod audio; -pub mod interfaces; -pub mod meshops; use anyhow::Result; use clap::Parser; |