move gui::persistent_state to util::persistent_state

This commit is contained in:
2025-04-17 20:36:42 +01:00
parent 9df757c169
commit c85a169765
3 changed files with 4 additions and 3 deletions
+3 -3
View File
@@ -1,16 +1,16 @@
mod persistent_state; pub mod settings;
mod settings;
use crate::{ use crate::{
features::{ features::{
self, anti_afk::AntiAfk, empty_session::EmptySession, force_close::ForceClose, self, anti_afk::AntiAfk, empty_session::EmptySession, force_close::ForceClose,
launch::Launch, launch::Launch,
}, },
gui::{persistent_state::PersistentState, settings::Settings}, gui::settings::Settings,
util::{ util::{
self, self,
consts::{APP_STORAGE_PATH, ENHANCED, GTA_WINDOW_TITLE, LEGACY}, consts::{APP_STORAGE_PATH, ENHANCED, GTA_WINDOW_TITLE, LEGACY},
meta::Meta, meta::Meta,
persistent_state::PersistentState,
}, },
}; };
use eframe::egui; use eframe::egui;
+1
View File
@@ -2,4 +2,5 @@ pub mod codeberg;
pub mod consts; pub mod consts;
pub mod countdown; pub mod countdown;
pub mod meta; pub mod meta;
pub mod persistent_state;
pub mod win; pub mod win;