BITKit/Packages/Runtime~/Core/Utility/Activable.cs

8 lines
136 B
C#

namespace BITKit
{
public interface IActivable
{
void SetActive(bool active);
bool Enabled { get; set; }
}
}