0.1.0-1-alpha.2-fix.3
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user