ProjectDDD/Assets/_DDD/_Scripts/GameUi/New/ITabSelectable.cs

11 lines
215 B
C#
Raw Normal View History

2025-07-25 07:58:53 +00:00
using System;
namespace DDD
{
public interface ITabSelectable<T> where T : Enum
{
void Initialize(Action<T> onSelected);
void SetSelected(bool isSelected);
T TabType { get; }
}
}