mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-06 16:16:44 +08:00
15 lines
369 B
C#
15 lines
369 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Core.Abstractions.Lifecycle;
|
|
|
|
/// <summary>
|
|
/// 可销毁接口,为需要资源清理的组件提供标准销毁能力
|
|
/// </summary>
|
|
public interface IDestroyable
|
|
{
|
|
/// <summary>
|
|
/// 销毁组件并释放资源
|
|
/// </summary>
|
|
void Destroy();
|
|
} |