Files
BoilR/src/gog/gog_settings.rs
T
Ankush GuptaandGitHub c188c6f385 macOS Support (#18)
* replace target_os = "linux" with target_family = "unix"

* check correct dir for macos steam files
2022-03-10 06:21:28 +01:00

11 lines
274 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct GogSettings {
pub enabled: bool,
pub location: Option<String>,
pub wine_c_drive: Option<String>,
#[cfg(target_family = "unix")]
pub create_symlinks: bool,
}