namespace UI.CardSystem.StateMachine { /// /// Implement on a state component to receive routed click events /// from CardContext/CardDisplay. /// public interface ICardClickHandler { void OnCardClicked(CardContext context); } }