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/src/runtime.rs
// version: 1
// version: 2
/// Stable label for the current Tauri/WASM runtime combination.
pub(crate) fn runtime_label() -> &'static str {
@@ -16,3 +16,14 @@ pub(crate) fn record_frontend_ready() {
);
return;
}
/// Records one accepted native window close request.
pub(crate) fn record_window_close(source: &str) {
tracing::info!(
target: "games::tauri::reflex",
action = "window_close",
source = source,
"Reflex Tauri window close accepted"
);
return;
}