unity-atoms/Packages/Core/Runtime/Variables/IAtomVariableIcon.cs

9 lines
312 B
C#
Raw Normal View History

2019-06-16 15:27:24 -04:00
namespace UnityAtoms
{
/// <summary>
/// Use in order to determine if this is a Variable when assigning icons to Atoms.
/// This is hack is necessary because IsAssignableFrom and IsSubclassOf doesn't work without a type constraint 💩
/// </summary>
public interface IAtomVariableIcon { }
2019-06-16 15:27:24 -04:00
}