Files
tbd-station-14/Content.Shared/Verbs/VerbVisibility.cs
2021-06-09 22:19:39 +02:00

26 lines
617 B
C#

#nullable enable
namespace Content.Shared.Verbs
{
/// <summary>
/// Possible states of visibility for the verb in the right click menu.
/// </summary>
public enum VerbVisibility
{
/// <summary>
/// The verb will be listed in the right click menu.
/// </summary>
Visible,
/// <summary>
/// The verb will be listed, but it will be grayed out and unable to be clicked on.
/// </summary>
Disabled,
/// <summary>
/// The verb will not be listed in the right click menu.
/// </summary>
Invisible
}
}