Files
7d4e71b9a367f5c10e2475d1f91c0ce52fffd111
11 lines
367 B
C#
11 lines
367 B
C#
using Content.Shared.Revolutionary;
|
|||
using Robust.Shared.GameStates;
|
|||
|
|||
namespace Content.Shared.Mindshield.Components;
|
|||
|
|||
/// <summary>
|
|||
/// Component given to an entity to mark it is a mindshield implant.
|
|||
/// </summary>
|
|||
[RegisterComponent, NetworkedComponent, Access(typeof(SharedRevolutionarySystem))]
|
|||
public sealed partial class MindShieldImplantComponent : Component;
|