mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
* Move handle_grid_change into grid page * Move handle_correct_grid_request into page * Move handle_shortcut_select into page * Do not include openssl on windows * Remove unused imports * Move user select into seperate component * Move handle image selected to page * Make gog use linux cfg
38 lines
758 B
Rust
38 lines
758 B
Rust
#[cfg(target_family = "unix")]
|
|
mod bottles;
|
|
#[cfg(target_family = "unix")]
|
|
mod flatpak;
|
|
#[cfg(target_family = "unix")]
|
|
mod heroic;
|
|
#[cfg(target_family = "unix")]
|
|
mod legendary;
|
|
#[cfg(target_family = "unix")]
|
|
mod lutris;
|
|
#[cfg(target_family = "unix")]
|
|
mod minigalaxy;
|
|
|
|
#[cfg(not(target_family = "unix"))]
|
|
mod amazon;
|
|
|
|
|
|
mod gog;
|
|
mod itch;
|
|
mod origin;
|
|
mod platform;
|
|
mod platforms_load;
|
|
mod uplay;
|
|
|
|
mod egs;
|
|
pub(crate) use platform::*;
|
|
|
|
#[cfg(target_family = "unix")]
|
|
pub(crate) use gog::get_gog_shortcuts_from_game_folders;
|
|
#[cfg(target_family = "unix")]
|
|
pub(crate) use gog::GogShortcut;
|
|
|
|
|
|
pub use platforms_load::get_platforms;
|
|
pub(crate) use platforms_load::load_settings;
|
|
pub(crate) use platforms_load::FromSettingsString;
|
|
pub use platforms_load::Platforms;
|