diff --git a/examples/tic-tac-toe-gui/src/main.rs b/examples/tic-tac-toe-gui/src/main.rs index 8cbeb8d..b993745 100644 --- a/examples/tic-tac-toe-gui/src/main.rs +++ b/examples/tic-tac-toe-gui/src/main.rs @@ -319,6 +319,10 @@ impl eframe::App for TicTacToeApp { } }); } + + fn on_exit(&mut self, _gl: Option<&eframe::glow::Context>) { + // TODO: implement the cleanup an proper stop of waku node + } } #[tokio::main]