Files
crystall-punk-14/Content.Shared/GameObjects/Verbs/VerbCategories.cs

17 lines
487 B
C#
Raw Normal View History

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