CTT/Unity/Assets/Model/Core/Event/EventAttribute.cs

9 lines
148 B
C#

using System;
namespace ET
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class EventAttribute: BaseAttribute
{
}
}