DefaultUIGroupHelper.cs 682 B

123456789101112131415161718192021222324
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 Jiang Yin. All rights reserved.
  4. // Homepage: https://gameframework.cn/
  5. // Feedback: mailto:ellan@gameframework.cn
  6. //------------------------------------------------------------
  7. namespace UnityGameFramework.Runtime
  8. {
  9. /// <summary>
  10. /// 默认界面组辅助器。
  11. /// </summary>
  12. public class DefaultUIGroupHelper : UIGroupHelperBase
  13. {
  14. /// <summary>
  15. /// 设置界面组深度。
  16. /// </summary>
  17. /// <param name="depth">界面组深度。</param>
  18. public override void SetDepth(int depth)
  19. {
  20. }
  21. }
  22. }