From 18cf7fa1daf9ea0f3ba71ad0ee4d857e703bd4b4 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Sat, 10 Sep 2022 19:31:50 +0200 Subject: Add initial front-end code for launching Northstar --- src-tauri/src/main.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src-tauri/src/main.rs') diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 2ba190bb..097774d4 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -55,7 +55,8 @@ fn main() { verify_install_location, get_host_os, install_northstar_caller, - update_northstar_caller + update_northstar_caller, + launch_northstar ]) .run(tauri::generate_context!()) .expect("error while running tauri application"); @@ -187,3 +188,10 @@ async fn update_northstar_caller(game_path: String) -> Result { } } } + +#[tauri::command] +/// Launches Northstar +fn launch_northstar(game_install: GameInstall) -> Result { + dbg!(game_install.clone()); + Err(format!("Not yet implemented for {:?} on {}", game_install.install_type, get_host_os())) +} -- cgit v1.2.3