11 lines
215 B
C#
11 lines
215 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace DDD
|
||
|
{
|
||
|
public interface ITabSelectable<T> where T : Enum
|
||
|
{
|
||
|
void Initialize(Action<T> onSelected);
|
||
|
void SetSelected(bool isSelected);
|
||
|
T TabType { get; }
|
||
|
}
|
||
|
}
|