11 lines
247 B
C#
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);
|
|
}
|
|
} |