// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
namespace GFramework.Core.Abstractions.Events;
///
/// 事件接口,定义了事件注册的基本功能
///
public interface IEvent
{
///
/// 注册事件处理函数
///
/// 事件触发时要执行的回调函数
/// 用于取消注册的句柄对象
IUnRegister Register(Action onEvent);
}