2021-02-27 04:12:09 +01:00
|
|
|
#nullable enable
|
|
|
|
|
|
2020-08-13 14:40:27 +02:00
|
|
|
namespace Content.Shared.GameObjects.Verbs
|
2020-05-23 03:09:44 +02:00
|
|
|
{
|
|
|
|
|
/// <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
|
|
|
|
|
}
|
|
|
|
|
}
|