* basic eui and window * finish EUI, update defaults * unnecessary usings * convert to bounduserinterface * merge me up merge me up inside * Fix repeated define for component in prototype * impl swept UI suggestion * apply discord reviews * small changes
18 lines
617 B
C#
18 lines
617 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", null);
|
|
public static readonly VerbCategoryData SetTransferAmount =
|
|
("Set Transfer Amount", "/Textures/Interface/VerbIcons/spill.svg.192dpi.png");
|
|
}
|
|
}
|