* More Construction Pieces: Default construction targets * More Construction Pieces: Unfinished particle accelerator will tell you how to finish it * More Construction Pieces: Construction system actually pathfinds any-to-any * More Construction Pieces: Verb to begin deconstruction of an object
15 lines
468 B
C#
15 lines
468 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);
|
|
public static readonly VerbCategoryData Construction = ("Construction", null);
|
|
}
|
|
}
|