12 lines
256 B
C#
12 lines
256 B
C#
namespace DuloGames.UI
|
|
{
|
|
using UnityEngine.Events;
|
|
|
|
public interface IUISlotHasCooldown
|
|
{
|
|
UISpellInfo GetSpellInfo();
|
|
UISlotCooldown cooldownComponent { get; }
|
|
void SetCooldownComponent(UISlotCooldown cooldown);
|
|
}
|
|
}
|