updates for cleaning functionality

This commit is contained in:
2026-01-24 19:15:04 -05:00
parent ea2028cf13
commit b1e99fa952
12 changed files with 700 additions and 22 deletions

View File

@@ -28,6 +28,8 @@ func start_game(first_player: int) -> void:
is_first_turn = true
current_phase = Enums.TurnPhase.ACTIVE
turn_started.emit(current_player_index, turn_number)
# Emit phase_changed to trigger the initial Active phase execution
phase_changed.emit(current_phase)
## Advance to the next phase
func advance_phase() -> Enums.TurnPhase: