14 lines
167 B
C#
14 lines
167 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UIWidgets
|
|
{
|
|
[Serializable]
|
|
public class TabIcons : Tab
|
|
{
|
|
public Sprite IconDefault;
|
|
|
|
public Sprite IconActive;
|
|
}
|
|
}
|