summaryrefslogtreecommitdiff
path: root/client/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/main.rs')
-rw-r--r--client/src/main.rs12
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;