Files
ToriaAssets/Imports/RPG and MMO UI 9/Scripts/UI/Icon Slot System/Interfaces/IUISlotHasCooldown.cs
T

12 lines
256 B
C#

namespace DuloGames.UI
{
using UnityEngine.Events;
public interface IUISlotHasCooldown
{
UISpellInfo GetSpellInfo();
UISlotCooldown cooldownComponent { get; }
void SetCooldownComponent(UISlotCooldown cooldown);
}
}