BITFALL/Assets/BITKit/Core/Attributes/IBITCommand.cs

23 lines
574 B
C#

using System;
namespace BITKit
{
[AttributeUsage(AttributeTargets.Method)]
public class BITCommandAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Field)]
public class InjectAttribute : System.Attribute
{
}
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = true, Inherited = true)]
public class CustomTypeAttribute : System.Attribute
{
public readonly Type Type;
public CustomTypeAttribute(Type type)
{
Type = type;
}
}
}