unity-atoms/Packages/Core/Runtime/Functions/IAtomFunctionIcon.cs
2019-10-01 17:27:22 +02:00

9 lines
312 B
C#

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