NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Framework/Event/EventManager.cs

16 lines
475 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using PhxhSDK;
namespace Framework
{
/// <summary>
/// 项目特定的 EventManager 实现
/// 继承自泛型 EventManager使用 EventName 枚举作为事件标识
/// </summary>
public partial class EventManager : PhxhSDK.EventManager<EventManager.EventName>
{
// 此类现在继承自 PhxhSDK.EventManager<EventName>
// 所有核心功能都在基类中实现
// 这里可以添加项目特定的扩展方法
}
}