12 lines
289 B
C#
12 lines
289 B
C#
namespace UI.CardSystem.StateMachine
|
|
{
|
|
/// <summary>
|
|
/// Implement on a state component to receive routed click events
|
|
/// from CardContext/CardDisplay.
|
|
/// </summary>
|
|
public interface ICardClickHandler
|
|
{
|
|
void OnCardClicked(CardContext context);
|
|
}
|
|
}
|