using UnityEngine; using System; namespace UIWidgets { /// /// Tab. /// [Serializable] public class Tab { /// /// Text of button for this tab. /// public string Name; /// /// The tab object. /// public GameObject TabObject; } }