Files
TEngine/UnityProject/Assets/GameScripts/HotFix/GameLogic/Event/EventInterfaceHelper.cs
ALEXTANG f64bb37706 更新Demo
更新Demo
2023-12-20 12:08:25 +08:00

20 lines
441 B
C#

using System;
using TEngine;
namespace GameLogic
{
/// <summary>
/// 事件接口帮助类。
/// </summary>
internal class EventInterfaceHelper
{
/// <summary>
/// 初始化。
/// </summary>
public static void Init()
{
RegisterEventInterface_Logic.Register(GameEvent.EventMgr);
RegisterEventInterface_UI.Register(GameEvent.EventMgr);
}
}
}