diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-14 21:40:30 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-14 21:40:30 +0200 |
commit | c44b86bcd86762dcdf1268ebfd3be9899ccf24ba (patch) | |
tree | 7ac984467e973f5abfa78c913e692ce06c0ca4e6 /pixel-client/src/main.rs | |
parent | c4ecfadbdfa8487a390958dbd80240f58b286303 (diff) | |
download | hurrycurry-c44b86bcd86762dcdf1268ebfd3be9899ccf24ba.tar hurrycurry-c44b86bcd86762dcdf1268ebfd3be9899ccf24ba.tar.bz2 hurrycurry-c44b86bcd86762dcdf1268ebfd3be9899ccf24ba.tar.zst |
pc: add itembubble and config save/load
Diffstat (limited to 'pixel-client/src/main.rs')
-rw-r--r-- | pixel-client/src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pixel-client/src/main.rs b/pixel-client/src/main.rs index 23d99bc8..24421994 100644 --- a/pixel-client/src/main.rs +++ b/pixel-client/src/main.rs @@ -15,7 +15,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#![feature(map_many_mut)] +#![feature(map_many_mut, path_add_extension)] use clap::{Parser, Subcommand}; use game::Game; use hurrycurry_client_lib::network::sync::Network; @@ -26,6 +26,7 @@ use render::Renderer; use sdl2::{event::Event, keyboard::KeyboardState, mouse::MouseState, pixels::Color}; use std::time::{Duration, Instant}; +pub mod config; pub mod game; pub mod helper; pub mod menu; |