1
0
Fork 0
mirror of https://github.com/marcrobledo/RomPatcher.js.git synced 2025-07-27 16:48:31 +00:00

WIP: Tauri app conversion

This commit is contained in:
Iranon 2024-06-04 17:42:12 +02:00
parent 1a41b57a70
commit 1e2e84264e
50 changed files with 5204 additions and 612 deletions

8
src-tauri/src/main.rs Normal file
View file

@ -0,0 +1,8 @@
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("error while running tauri application");
}