8 lines
No EOL
260 B
GDScript
8 lines
No EOL
260 B
GDScript
extends "res://Systems/StateMachine/ChessGameState.gd"
|
|
|
|
func enter(_previous: String, _data := {}) -> void:
|
|
pass
|
|
|
|
func handleInput(event: InputEvent) -> void:
|
|
if event.is_action_pressed("playCard"):
|
|
finished.emit(Constants.ATTACH_CARDS) |