10 lines
281 B
C#
10 lines
281 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Overlays;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// This component allows you to see mindshield icons above mobs.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed partial class ShowMindShieldIconsComponent : Component { }
|