1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- using System;
- using UnityEngine;
- namespace UnityGameFramework.Runtime
- {
- public sealed partial class UIComponent : GameFrameworkComponent
- {
- [Serializable]
- private sealed class UIGroup
- {
- [SerializeField]
- private string m_Name = null;
- [SerializeField]
- private int m_Depth = 0;
- public string Name
- {
- get
- {
- return m_Name;
- }
- }
- public int Depth
- {
- get
- {
- return m_Depth;
- }
- }
- }
- }
- }
|