7 lines
266 B
GDScript
7 lines
266 B
GDScript
extends "res://Systems/StateMachine/ChessGameState.gd"
|
|
|
|
func enter(_previous: String, _data := {}) -> void:
|
|
print("ENTERING STATE ", Constants.WHITE_TURN)
|
|
game.currentPlayer = game.WHITE
|
|
game.updateTurnIndicator()
|
|
finished.emit(Constants.HAND_SETUP)
|