Files
AppleHillsProduction/Assets/Scripts/CardSystem/StateMachine/ICardClickHandler.cs

12 lines
289 B
C#
Raw Normal View History

2025-11-16 20:35:54 +01:00
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);
}
}