mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
9 lines
286 B
C#
9 lines
286 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Core.Abstractions.Lifecycle;
|
|
|
|
/// <summary>
|
|
/// 完整生命周期接口,组合了初始化和销毁能力
|
|
/// </summary>
|
|
public interface ILifecycle : IInitializable, IDestroyable; |