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

9 lines
148 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System;
namespace ET
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class EventAttribute: BaseAttribute
{
}
}