12 lines
256 B
C#
Raw Normal View History

2026-05-06 15:07:56 +02:00
namespace DuloGames.UI
{
using UnityEngine.Events;
public interface IUISlotHasCooldown
{
UISpellInfo GetSpellInfo();
UISlotCooldown cooldownComponent { get; }
void SetCooldownComponent(UISlotCooldown cooldown);
}
}