com.alicizax.unity/Runtime/Base/ReferencePool/IReference.cs

15 lines
235 B
C#
Raw Normal View History

2025-02-07 16:04:12 +08:00

namespace AlicizaX.Runtime
{
/// <summary>
/// 引用接口。
/// </summary>
public interface IReference
{
/// <summary>
/// 清理引用。
/// </summary>
void Clear();
}
}