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

13 lines
233 B
C#
Raw Normal View History

2026-05-06 15:07:56 +02:00
using UnityEngine;
using Object = UnityEngine.Object;
namespace DuloGames.UI
{
public interface IUISpellSlot
{
UISpellInfo GetSpellInfo();
bool Assign(UISpellInfo spellInfo);
void Unassign();
}
}