From 9918e1e2b8b2aafbae3592270176bbe651a3ace4 Mon Sep 17 00:00:00 2001 From: David Peter Date: Wed, 10 Jul 2024 22:17:01 +0200 Subject: [PATCH] Change cursor in winning state --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 5299a5e..0d7ca84 100644 --- a/src/main.rs +++ b/src/main.rs @@ -606,6 +606,7 @@ fn mouse_cursor_system( window.cursor.icon = match *interaction_state { InteractionState::WaitForAI => CursorIcon::Progress, + InteractionState::Winner(_) => CursorIcon::Default, _ => CursorIcon::Pointer, };