Files
BITKit/Src/Core/Utility/Activable.cs
2023-09-02 00:51:39 +08:00

8 lines
136 B
C#

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