0.1.0-1-alpha.2-fix.3

This commit is contained in:
2026-09-17 00:29:56 +02:00
parent 37a00b3c2b
commit b31ffa74f5
17 changed files with 349 additions and 57 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/apps/game-reflex-poc-tauri/frontend/ts/bridge.ts
// version: 1
// version: 2
import { invoke } from "@tauri-apps/api/core";
@@ -10,3 +10,7 @@ export async function getRuntimeLabel(): Promise<string> {
export async function notifyFrontendReady(): Promise<void> {
await invoke("frontend_ready");
}
export async function closeMainWindow(): Promise<void> {
await invoke("close_main_window");
}