unity-atoms/Source/Lists/IListIcon.cs
Adam Ramberg cb6280a255 WIP Icons
2019-06-16 21:27:24 +02:00

9 lines
300 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 IListIcon { }
}