using Robust.Shared.GameStates; namespace Content.Shared._EE.Shadowling; /// /// This is used for the Anti Mind Control device /// [RegisterComponent, NetworkedComponent] public sealed partial class AntiMindControlItemComponent : Component { [DataField] public TimeSpan Duration = TimeSpan.FromSeconds(3); [DataField] public int MaxCharges; [DataField] public int CurrentCharges; }