Cyborg module action icons (#32505)

* Init

* added jani and medical

* + sci and service modules

* + syndi modules

* fixing up

* geiger counter stuff
This commit is contained in:
ScarKy0
2024-10-14 09:05:40 +02:00
committed by GitHub
parent a7339a5bf9
commit 5be82d2a7f
35 changed files with 180 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
//using Robust.Shared.GameObjects;
using Robust.Shared.GameStates;
using Robust.Shared.Utility;
namespace Content.Shared.Silicons.Borgs.Components;
/// <summary>
/// This is used to override the action icon for cyborg actions.
/// Without this component the no-action state will be used.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class BorgModuleIconComponent : Component
{
/// <summary>
/// The action icon for this module
/// </summary>
[DataField]
public SpriteSpecifier.Rsi Icon = default!;
}