14 lines
379 B
C#
14 lines
379 B
C#
|
|
namespace Content.Shared.GameObjects
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Standard verb categories.
|
||
|
|
/// </summary>
|
||
|
|
public static class VerbCategories
|
||
|
|
{
|
||
|
|
public static readonly VerbCategoryData Debug =
|
||
|
|
("Debug", "/Textures/UserInterface/VerbIcons/debug.svg.96dpi.png");
|
||
|
|
|
||
|
|
public static readonly VerbCategoryData Rotate = ("Rotate", null);
|
||
|
|
}
|
||
|
|
}
|