Add support for lutris flatpak version (#114)

This commit is contained in:
Philip Kristoffersen
2022-05-01 17:21:09 +02:00
committed by GitHub
parent 3f075f80f1
commit 81ddcb6959
6 changed files with 81 additions and 25 deletions
+3 -1
View File
@@ -3,5 +3,7 @@ use serde::{Deserialize, Serialize};
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct LutrisSettings {
pub enabled: bool,
pub executable: Option<String>,
pub executable: String,
pub flatpak: bool,
pub flatpak_image: String,
}