UIComponent.UIGroup.cs 999 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. using System;
  8. using UnityEngine;
  9. namespace UnityGameFramework.Runtime
  10. {
  11. public sealed partial class UIComponent : GameFrameworkComponent
  12. {
  13. [Serializable]
  14. private sealed class UIGroup
  15. {
  16. [SerializeField]
  17. private string m_Name = null;
  18. [SerializeField]
  19. private int m_Depth = 0;
  20. public string Name
  21. {
  22. get
  23. {
  24. return m_Name;
  25. }
  26. }
  27. public int Depth
  28. {
  29. get
  30. {
  31. return m_Depth;
  32. }
  33. }
  34. }
  35. }
  36. }