1234567891011121314151617181920212223 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- namespace UnityGameFramework.Runtime
- {
- /// <summary>
- /// 默认界面组辅助器。
- /// </summary>
- public class DefaultUIGroupHelper : UIGroupHelperBase
- {
- /// <summary>
- /// 设置界面组深度。
- /// </summary>
- /// <param name="depth">界面组深度。</param>
- public override void SetDepth(int depth)
- {
- }
- }
- }
|