mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
28 lines
551 B
C#
28 lines
551 B
C#
using System;
|
|
|
|
namespace TEngine
|
|
{
|
|
public enum EEventGroup
|
|
{
|
|
/// <summary>
|
|
/// UI相关的交互。
|
|
/// </summary>
|
|
GroupUI,
|
|
|
|
/// <summary>
|
|
/// 逻辑层内部相关的交互。
|
|
/// </summary>
|
|
GroupLogic,
|
|
}
|
|
|
|
[System.AttributeUsage(System.AttributeTargets.Interface)]
|
|
public class EventInterface : Attribute
|
|
{
|
|
private EEventGroup _mGroup;
|
|
public EventInterface(EEventGroup group)
|
|
{
|
|
_mGroup = group;
|
|
}
|
|
}
|
|
}
|