2020-05-23 03:09:44 +02:00
|
|
|
namespace Content.Shared.GameObjects
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Standard verb categories.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class VerbCategories
|
|
|
|
|
{
|
|
|
|
|
public static readonly VerbCategoryData Debug =
|
2020-07-07 13:19:00 -04:00
|
|
|
("Debug", "/Textures/Interface/VerbIcons/debug.svg.96dpi.png");
|
2020-05-23 03:09:44 +02:00
|
|
|
|
|
|
|
|
public static readonly VerbCategoryData Rotate = ("Rotate", null);
|
|
|
|
|
}
|
|
|
|
|
}
|