21 lines
505 B
C#
21 lines
505 B
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2020 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
namespace ET
|
|
{
|
|
/// <summary>
|
|
/// 引用接口。
|
|
/// </summary>
|
|
public interface IReference
|
|
{
|
|
/// <summary>
|
|
/// 清理引用。
|
|
/// </summary>
|
|
void Clear();
|
|
}
|
|
}
|