11 lines
195 B
C#
11 lines
195 B
C#
using System.Collections;
|
|
using UnityEngine;
|
|
|
|
namespace NEG.Utils.UiToolkits
|
|
{
|
|
public interface IMultiSelectChipItem
|
|
{
|
|
string Name { get; }
|
|
Color Color { get; }
|
|
}
|
|
} |