Neg_Utils/NEG/UI/IUiElement.cs
2023-02-02 16:36:57 +01:00

11 lines
247 B
C#

namespace NEG.UI
{
public interface IUiElement
{
/// <summary>
/// Sets only visible state of element
/// </summary>
/// <param name="setEnabled"></param>
void SetEnabled(bool setEnabled);
}
}