unity-atoms/Source/Lists/IAtomListIcon.cs
2019-09-25 21:05:06 +02:00

9 lines
304 B
C#

namespace UnityAtoms
{
/// <summary>
/// Use in order to determine if this is a List when assigning icons to Atoms.
/// This is hack is necessary because IsAssignableFrom and IsSubclassOf doesn't work without a type constraint 💩
/// </summary>
public interface IAtomListIcon { }
}