mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
11 lines
248 B
Rust
11 lines
248 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
pub struct EpicGamesLauncherSettings {
|
|
pub enabled: bool,
|
|
pub location: Option<String>,
|
|
|
|
#[cfg(target_os = "linux")]
|
|
pub create_symlinks: bool,
|
|
}
|