mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
15 lines
408 B
C#
15 lines
408 B
C#
|
namespace UnityAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Common icon assignment processor that adds the attribute assigner, which
|
||
|
/// makes the attribute AssignIcon work.
|
||
|
/// </summary>
|
||
|
internal class CommonIconAssignmentProcessor : IconAssignmentProcessor
|
||
|
{
|
||
|
public CommonIconAssignmentProcessor()
|
||
|
{
|
||
|
IconAssigners.Add(new AttributeMonoScriptAssigner());
|
||
|
}
|
||
|
}
|
||
|
}
|