mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
9 lines
306 B
C#
9 lines
306 B
C#
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Use in order to determine if this is a Event when assigning icons to Atoms.
|
|
/// This is hack is necessary because IsAssignableFrom and IsSubclassOf doesn't work without a type constraint 💩
|
|
/// </summary>
|
|
public interface IAtomEventIcon { }
|
|
}
|