26 lines
560 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace EasyInject.Attributes
{
/// <summary>
/// author: spyn
/// description: Component特性用于标注这是个需要被IoC管理的非MonoBehaviour的组件
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class ComponentAttribute : Attribute
{
public string Name { get; }
public ComponentAttribute(string name)
{
Name = name;
}
public ComponentAttribute()
{
Name = string.Empty;
}
}
}