Files
BoilR/src/amazon/amazon_settings.rs
T
Philip KristoffersenandGitHub d1389fd757 Open urls with exe (#146)
* Launch Epic Games in safe mode through the exe

* Launch through exe for amazon games

* Remove unused comment

* Launch Uplay games through exe

* Fix epic tests

* Always launch origin games through the exe

* Fix that compat_folder is an option on unix
2022-05-22 14:53:23 +02:00

8 lines
181 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct AmazonSettings {
pub enabled: bool,
pub launcher_location: Option<String>
}