24 lines
682 B
C#
24 lines
682 B
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
namespace UnityGameFramework.Runtime
|
|
{
|
|
/// <summary>
|
|
/// 默认界面组辅助器。
|
|
/// </summary>
|
|
public class DefaultUIGroupHelper : UIGroupHelperBase
|
|
{
|
|
/// <summary>
|
|
/// 设置界面组深度。
|
|
/// </summary>
|
|
/// <param name="depth">界面组深度。</param>
|
|
public override void SetDepth(int depth)
|
|
{
|
|
}
|
|
}
|
|
}
|