DefaultUIGroupHelper.cs 700 B

1234567891011121314151617181920212223
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 loyalsoft. All rights reserved.
  4. // Homepage: http://www.game7000.com/
  5. // Feedback: http://www.game7000.com/
  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. }