Files
tbd-station-14/Content.Shared/GameObjects/Verbs/VerbCategories.cs
2021-03-14 14:40:14 +01:00

17 lines
487 B
C#

#nullable enable
namespace Content.Shared.GameObjects.Verbs
{
/// <summary>
/// Standard verb categories.
/// </summary>
public static class VerbCategories
{
public static readonly VerbCategoryData Debug =
("Debug", "/Textures/Interface/VerbIcons/debug.svg.192dpi.png");
public static readonly VerbCategoryData Rotate = ("Rotate", null);
public static readonly VerbCategoryData Construction = ("Construction", null);
}
}