16 lines
175 B
C#
16 lines
175 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UIWidgets
|
|
{
|
|
[Serializable]
|
|
public class Tab
|
|
{
|
|
public string Name;
|
|
|
|
public Sprite Icon;
|
|
|
|
public GameObject TabObject;
|
|
}
|
|
}
|