* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
14 lines
381 B
C#
14 lines
381 B
C#
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.96dpi.png");
|
|
|
|
public static readonly VerbCategoryData Rotate = ("Rotate", null);
|
|
}
|
|
}
|