ChessBuilder/Systems/StateMachine/GameStates/ApplyTileEffects.gd
2025-02-11 16:22:40 -06:00

6 lines
No EOL
235 B
GDScript

extends "res://Systems/StateMachine/ChessGameState.gd"
func enter(_previous: String, _data := {}) -> void:
print("ENTERING STATE ", Constants.TILE_EFFECTS)
game.applyTileEffects()
finished.emit(Constants.EVALUATE_POSITION)