aboutsummaryrefslogtreecommitdiff
path: root/pixel-client/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'pixel-client/src/main.rs')
-rw-r--r--pixel-client/src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/pixel-client/src/main.rs b/pixel-client/src/main.rs
index 1dd34e72..15c08632 100644
--- a/pixel-client/src/main.rs
+++ b/pixel-client/src/main.rs
@@ -15,27 +15,27 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-#![feature(map_many_mut, path_add_extension, iterator_try_collect)]
+#![feature(path_add_extension, iterator_try_collect)]
use anyhow::{anyhow, Result};
use clap::{Parser, Subcommand};
use config::Config;
use game::Game;
use hurrycurry_client_lib::network::sync::Network;
use hurrycurry_protocol::glam::Vec2;
-use strings::set_language;
use menu::{ingame::IngameMenu, main::MainMenu};
use profiler::ProfilerOverlay;
use render::Renderer;
use sdl2::{event::Event, keyboard::KeyboardState, mouse::MouseState, pixels::Color};
use std::time::{Duration, Instant};
+use strings::set_language;
pub mod config;
pub mod game;
pub mod helper;
-pub mod strings;
pub mod menu;
pub mod profiler;
pub mod render;
+pub mod strings;
pub mod tilemap;
pub mod ui;