using Robust.Shared.GameStates; namespace Content.Shared.Chemistry.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] public sealed partial class PillComponent : Component { /// /// The pill id. Used for networking & serializing pill visuals. /// [AutoNetworkedField] [DataField("pillType")] [ViewVariables(VVAccess.ReadWrite)] public uint PillType; }