Files
EoM_Redux/EoM_Redux/ISpell.cs
T

8 lines
122 B
C#

namespace EoM_Redux;
public interface ISpell
{
public SpellType Type { get; }
public IElement Element { get; }
}