diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 20:36:24 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 20:36:24 +0200 |
commit | e9d990d0498d95f050a8c6bb9b3403336e852fe6 (patch) | |
tree | 6d61de5c40ee08d16dea6afb97b8a77758d4e102 /src-tauri/src/lib.rs | |
parent | 18cf7fa1daf9ea0f3ba71ad0ee4d857e703bd4b4 (diff) | |
download | FlightCore-e9d990d0498d95f050a8c6bb9b3403336e852fe6.tar.gz FlightCore-e9d990d0498d95f050a8c6bb9b3403336e852fe6.zip |
Add initial back-end code for launching Northstar
Diffstat (limited to 'src-tauri/src/lib.rs')
-rw-r--r-- | src-tauri/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index d0377917..da1ba9b8 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -14,7 +14,7 @@ pub enum InstallType { #[derive(Serialize, Deserialize, Debug, Clone)] pub struct GameInstall { - game_path: String, + pub game_path: String, pub install_type: InstallType, } |