forked from SpaceStation14-Shenanigans/Monolith
486dc6ca62
* Fix ItemSlot Bug * Add Alt-use Key * Fix TransferAmount window bug * Alt-click functionality * Added AltInteract verbs * Add new verbs * verb icons * Changed Comments * Change Comments * Fix disposal verbs * Changed Get...() to Get...OrNull() * Changed alt-interact combat behaviour * Update verb icons * Inventory interact event * Add Alt+E secondary binding * Add alt-z keybinding * Rename AltUse -> AltActivateItemInWorld
19 lines
675 B
C#
19 lines
675 B
C#
|
|
namespace Content.Shared.Verbs
|
|
{
|
|
/// <summary>
|
|
/// Standard verb categories.
|
|
/// </summary>
|
|
public static class VerbCategories
|
|
{
|
|
public static readonly VerbCategoryData Debug =
|
|
("Debug", "/Textures/Interface/VerbIcons/debug.svg.192dpi.png");
|
|
|
|
public static readonly VerbCategoryData Rotate = ("Rotate", null);
|
|
public static readonly VerbCategoryData Construction =
|
|
("Construction", "/Textures/Interface/hammer_scaled.svg.192dpi.png");
|
|
public static readonly VerbCategoryData SetTransferAmount =
|
|
("Set Transfer Amount", "/Textures/Interface/VerbIcons/spill.svg.192dpi.png");
|
|
}
|
|
}
|