Files
BoilR/src/steam/settings.rs
T
Philip KristoffersenandGitHub 077f445175 Bigpicture optimization (#69)
* Download icons  when not in bigpicture mode
2022-04-01 17:40:39 +02:00

9 lines
223 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct SteamSettings {
pub location: Option<String>,
pub create_collections: bool,
pub optimize_for_big_picture: bool,
}