2021-02-27 04:12:09 +01:00
|
|
|
#nullable enable
|
|
|
|
|
|
2020-08-13 14:40:27 +02:00
|
|
|
namespace Content.Shared.GameObjects.Verbs
|
2020-05-23 03:09:44 +02:00
|
|
|
{
|
|
|
|
|
/// <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");
|
2020-05-23 03:09:44 +02:00
|
|
|
|
|
|
|
|
public static readonly VerbCategoryData Rotate = ("Rotate", null);
|
2020-12-08 10:53:37 +00:00
|
|
|
public static readonly VerbCategoryData Construction = ("Construction", null);
|
2020-05-23 03:09:44 +02:00
|
|
|
}
|
|
|
|
|
}
|