Files
AppleHillsProduction/Assets/Scripts/CardSystem/StateMachine/ICardClickHandler.cs
2025-11-18 09:29:59 +01:00

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);
}
}